summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/main.m
blob: 6a714577a35363b80f17b1cc3e050b70945e37be (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#import <Test/Test.h>
#import <TestExt/TestExt.h>

int main() {
  @autoreleasepool {
    Test *test = [[Test alloc] init];
    [test doSomethingElse:&test->_range];
  }
}