xref: /llvm-project/lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.m (revision af2ea183f5e3301406724bba116a7e200f108b79)
1#import <Foundation/Foundation.h>
2
3#import "TestExt.h"
4#import "Foo.h"
5
6@implementation Test (Stuff)
7- (void)doSomethingElse: (CMTimeRange *)range_ptr {
8    NSLog(@"doSomethingElse: %p", range_ptr); // break here
9}
10@end
11