diff options
Diffstat (limited to 'test/Import/call-expr/test.cpp')
-rw-r--r-- | test/Import/call-expr/test.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Import/call-expr/test.cpp b/test/Import/call-expr/test.cpp new file mode 100644 index 0000000000000..86c1b50c47d68 --- /dev/null +++ b/test/Import/call-expr/test.cpp @@ -0,0 +1,8 @@ +// RUN: clang-import-test -dump-ast -import %S/Inputs/F.cpp -expression %s | FileCheck %s +void expr() { + f(); +} + +// CHECK: FunctionDecl 0x{{[^ ]*}} <{{[^>]*}}> line:{{.*}}:{{[^ ]*}} used f 'void ()' +// CHECK: -CallExpr 0x{{[^ ]*}} <{{[^>]*}}> 'void' adl +// CHECK: -CXXOperatorCallExpr 0x{{[^ ]*}} <{{[^>]*}}> 'void' adl |