verifying that the types from that module don't override types from DWARF. Also added a target setting to LLDB so we can tell Clang where to look for these local modules. <rdar://problem/18805055> llvm-svn: 234016
12 lines
191 B
Objective-C
12 lines
191 B
Objective-C
@import Foundation;
|
|
@import myModule;
|
|
|
|
int main()
|
|
{
|
|
@autoreleasepool
|
|
{
|
|
MyClass *myObject = [MyClass alloc];
|
|
[myObject publicMethod]; // Set breakpoint 0 here.
|
|
}
|
|
}
|