Files
clang-p2996/lldb/test/lang/objc/modules-inline-functions/main.m
Sean Callanan 80c9759ef7 Added support for locating and importing functions
(including inline functions) from modules in the
expression parser.  We now have to retain a reference
to the code generator in ClangExpressionDeclMap so
that any imported function bodies can be appropriately
sent to that code generator.

<rdar://problem/19883002>

llvm-svn: 236297
2015-05-01 00:47:29 +00:00

10 lines
153 B
Objective-C

@import Darwin;
@import myModule;
int main()
{
int a = isInline(2);
int b = notInline();
printf("%d %d\n", a, b); // Set breakpoint here.
}