aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/lang/objc/ivar-in-framework-base/main.m
blob: 1fd352ec92c54f6b894a8b4e8d61752449ec80a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#import "lib.h"
#include <stdio.h>

@interface Bar : Foo
@property int barProp;
- (id)init;
@end

@implementation Bar

- (id)init {
  self = [super init];
  self.barProp = 15;
  return self;
}
@end

int main() {
  Bar *bar = [Bar new];
  puts("break here");
  return 0;
}