summaryrefslogtreecommitdiffstats
path: root/gnu/llvm/lldb/packages/Python/lldbsuite/test/lang/objc/conflicting-definition/TestExt/TestExt.m
blob: a14c702787dbae15c17105bdddcd147eb55c828b (plain) (blame)
1
2
3
4
5
6
7
8
#import "TestExt.h"
#import "Foo.h"

@implementation Test (Stuff)
- (void)doSomethingElse: (CMTimeRange *)range_ptr {
    NSLog(@"doSomethingElse: %p", range_ptr); // break here
}
@end