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
130 B
Objective-C

#import <Foundation/Foundation.h>
#import "Test.h"
@implementation Test
- (void) doTest {
NSLog(@"-[Test doTest]");
}
@end