Files
clang-p2996/lldb/test/API/lang/objc/conflicting-definition/TestExt/TestExt.m
Jonas Devlieghere af2ea183f5 [lldb] Import Foundation in TestConflictingDefinition.py
We need to import foundation to get a 'NSLog' declaration when building
against the iOS SDK. This doesn't appear necessary when building against
the macOS SDK, presumable because it gets transitively imported by
objc/NSObject.h
2022-04-08 10:46:34 -07:00

11 lines
220 B
Objective-C

#import <Foundation/Foundation.h>
#import "TestExt.h"
#import "Foo.h"
@implementation Test (Stuff)
- (void)doSomethingElse: (CMTimeRange *)range_ptr {
NSLog(@"doSomethingElse: %p", range_ptr); // break here
}
@end