xref: /llvm-project/lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.m (revision af2ea183f5e3301406724bba116a7e200f108b79)
1*af2ea183SJonas Devlieghere#import <Foundation/Foundation.h>
2*af2ea183SJonas Devlieghere
399451b44SJordan Rupprecht#import "TestExt.h"
499451b44SJordan Rupprecht#import "Foo.h"
599451b44SJordan Rupprecht
699451b44SJordan Rupprecht@implementation Test (Stuff)
799451b44SJordan Rupprecht- (void)doSomethingElse: (CMTimeRange *)range_ptr {
899451b44SJordan Rupprecht    NSLog(@"doSomethingElse: %p", range_ptr); // break here
999451b44SJordan Rupprecht}
1099451b44SJordan Rupprecht@end
11