|
|
@@ -0,0 +1,281 @@ |
|
|
// Test without serialization: |
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 \ |
|
|
// RUN: -ast-dump %s | FileCheck -strict-whitespace %s |
|
|
|
|
|
// Test with serialization: |
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 \ |
|
|
// RUN: -emit-pch -o %t %s |
|
|
// RUN: %clang_cc1 -triple x86_64-unknown-unknown -Wno-unused-value -std=gnu++17 \ |
|
|
// RUN: -x c++ -include-pch %t -ast-dump-all | FileCheck -strict-whitespace %s |
|
|
|
|
|
// XFAIL: * |
|
|
|
|
|
template <typename... Ts> void test(Ts... a) { |
|
|
struct V { |
|
|
void f() { |
|
|
[this] {}; |
|
|
[*this] {}; |
|
|
} |
|
|
}; |
|
|
int b, c; |
|
|
[]() {}; |
|
|
[](int a, ...) {}; |
|
|
[a...] {}; |
|
|
[=] {}; |
|
|
[=] { return b; }; |
|
|
[&] {}; |
|
|
[&] { return c; }; |
|
|
[b, &c] { return b + c; }; |
|
|
[a..., x = 12] {}; |
|
|
[]() constexpr {}; |
|
|
[]() mutable {}; |
|
|
[]() noexcept {}; |
|
|
[]() -> int { return 0; }; |
|
|
} |
|
|
// CHECK: TranslationUnitDecl {{.*}} <<invalid sloc>> <invalid sloc>{{( <undeserialized declarations>)?}} |
|
|
// CHECK: `-FunctionTemplateDecl {{.*}} <{{.*}}ast-dump-lambda.cpp:13:1, line:34:1> line:13:32{{( imported)?}} test |
|
|
// CHECK-NEXT: |-TemplateTypeParmDecl {{.*}} <col:11, col:23> col:23{{( imported)?}} referenced typename depth 0 index 0 ... Ts |
|
|
// CHECK-NEXT: `-FunctionDecl {{.*}} <col:27, line:34:1> line:13:32{{( imported)?}} test 'void (Ts...)' |
|
|
// CHECK-NEXT: |-ParmVarDecl {{.*}} <col:37, col:43> col:43{{( imported)?}} referenced a 'Ts...' pack |
|
|
// CHECK-NEXT: `-CompoundStmt {{.*}} <col:46, line:34:1> |
|
|
// CHECK-NEXT: |-DeclStmt {{.*}} <line:14:3, line:19:4> |
|
|
// CHECK-NEXT: | `-CXXRecordDecl {{.*}} <line:14:3, line:19:3> line:14:10{{( imported)?}}{{( <undeserialized declarations>)?}} struct V definition |
|
|
// CHECK-NEXT: | |-DefinitionData empty aggregate standard_layout trivially_copyable pod trivial literal has_constexpr_non_copy_move_ctor can_const_default_init |
|
|
// CHECK-NEXT: | | |-DefaultConstructor exists trivial constexpr needs_implicit defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CopyAssignment simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | |-MoveAssignment exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3, col:10> col:10{{( imported)?}} implicit struct V |
|
|
// CHECK-NEXT: | `-CXXMethodDecl {{.*}} <line:15:5, line:18:5> line:15:10{{( imported)?}} f 'void ()' |
|
|
// CHECK-NEXT: | `-CompoundStmt {{.*}} <col:14, line:18:5> |
|
|
// CHECK-NEXT: | |-LambdaExpr {{.*}} <line:16:7, col:15> '(lambda at {{.*}}ast-dump-lambda.cpp:16:7)' |
|
|
// CHECK-NEXT: | | |-CXXRecordDecl {{.*}} <col:7> col:7{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | | |-DefinitionData lambda standard_layout trivially_copyable can_const_default_init |
|
|
// CHECK-NEXT: | | | | |-DefaultConstructor |
|
|
// CHECK-NEXT: | | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CXXMethodDecl {{.*}} <col:12, col:15> col:7{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | | | `-CompoundStmt {{.*}} <col:14, col:15> |
|
|
// CHECK-NEXT: | | | `-FieldDecl {{.*}} <col:8> col:8{{( imported)?}} implicit 'V *' |
|
|
// CHECK-NEXT: | | |-ParenListExpr {{.*}} <col:8> 'NULL TYPE' |
|
|
// CHECK-NEXT: | | | `-CXXThisExpr {{.*}} <col:8> 'V *' this |
|
|
// CHECK-NEXT: | | `-<<<NULL>>> |
|
|
// CHECK-NEXT: | `-LambdaExpr {{.*}} <line:17:7, col:16> '(lambda at {{.*}}ast-dump-lambda.cpp:17:7)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:7> col:7{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda standard_layout trivially_copyable can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:13, col:16> col:7{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:15, col:16> |
|
|
// CHECK-NEXT: | | `-FieldDecl {{.*}} <col:8> col:8{{( imported)?}} implicit 'V' |
|
|
// CHECK-NEXT: | |-ParenListExpr {{.*}} <col:8> 'NULL TYPE' |
|
|
// CHECK-NEXT: | | `-UnaryOperator {{.*}} <col:8> '<dependent type>' prefix '*' cannot overflow |
|
|
// CHECK-NEXT: | | `-CXXThisExpr {{.*}} <col:8> 'V *' this |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-DeclStmt {{.*}} <line:20:3, col:11> |
|
|
// CHECK-NEXT: | |-VarDecl {{.*}} <col:3, col:7> col:7{{( imported)?}} referenced b 'int' |
|
|
// CHECK-NEXT: | `-VarDecl {{.*}} <col:3, col:10> col:10{{( imported)?}} referenced c 'int' |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:21:3, col:9> '(lambda at {{.*}}ast-dump-lambda.cpp:21:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:6, col:9> col:3{{( imported)?}} operator() 'auto () const' inline |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:8, col:9> |
|
|
// CHECK-NEXT: | | |-CXXConversionDecl {{.*}} <col:3, col:9> col:3{{( imported)?}} implicit constexpr operator auto (*)() 'auto (*() const noexcept)()' inline |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:3, col:9> col:3{{( imported)?}} implicit __invoke 'auto ()' static inline |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:22:3, col:19> '(lambda at {{.*}}ast-dump-lambda.cpp:22:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:16, col:19> col:3{{( imported)?}} operator() 'auto (int, ...) const' inline |
|
|
// CHECK-NEXT: | | | |-ParmVarDecl {{.*}} <col:6, col:10> col:10{{( imported)?}} a 'int' |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:18, col:19> |
|
|
// CHECK-NEXT: | | |-CXXConversionDecl {{.*}} <col:3, col:19> col:3{{( imported)?}} implicit constexpr operator auto (*)(int, ...) 'auto (*() const noexcept)(int, ...)' inline |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:3, col:19> col:3{{( imported)?}} implicit __invoke 'auto (int, ...)' static inline |
|
|
// CHECK-NEXT: | | `-ParmVarDecl {{.*}} <col:6, col:10> col:10{{( imported)?}} a 'int' |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:23:3, col:11> '(lambda at {{.*}}ast-dump-lambda.cpp:23:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda standard_layout trivially_copyable can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:8, col:11> col:3{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:10, col:11> |
|
|
// CHECK-NEXT: | | `-FieldDecl {{.*}} <col:4> col:4{{( imported)?}} implicit 'Ts...' |
|
|
// CHECK-NEXT: | |-ParenListExpr {{.*}} <col:4> 'NULL TYPE' |
|
|
// CHECK-NEXT: | | `-DeclRefExpr {{.*}} <col:4> 'Ts...' lvalue ParmVar {{.*}} 'a' 'Ts...' |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:24:3, col:8> '(lambda at {{.*}}ast-dump-lambda.cpp:24:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:5, col:8> col:3{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | `-CompoundStmt {{.*}} <col:7, col:8> |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:25:3, col:19> '(lambda at {{.*}}ast-dump-lambda.cpp:25:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:5, col:19> col:3{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | `-CompoundStmt {{.*}} <col:7, col:19> |
|
|
// CHECK-NEXT: | | `-ReturnStmt {{.*}} <col:9, col:16> |
|
|
// CHECK-NEXT: | | `-DeclRefExpr {{.*}} <col:16> 'const int' lvalue Var {{.*}} 'b' 'int' |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:26:3, col:8> '(lambda at {{.*}}ast-dump-lambda.cpp:26:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:5, col:8> col:3{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | `-CompoundStmt {{.*}} <col:7, col:8> |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:27:3, col:19> '(lambda at {{.*}}ast-dump-lambda.cpp:27:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:5, col:19> col:3{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | `-CompoundStmt {{.*}} <col:7, col:19> |
|
|
// CHECK-NEXT: | | `-ReturnStmt {{.*}} <col:9, col:16> |
|
|
// CHECK-NEXT: | | `-DeclRefExpr {{.*}} <col:16> 'int' lvalue Var {{.*}} 'c' 'int' |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:28:3, col:27> '(lambda at {{.*}}ast-dump-lambda.cpp:28:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:9, col:27> col:3{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:11, col:27> |
|
|
// CHECK-NEXT: | | | `-ReturnStmt {{.*}} <col:13, col:24> |
|
|
// CHECK-NEXT: | | | `-BinaryOperator {{.*}} <col:20, col:24> 'int' '+' |
|
|
// CHECK-NEXT: | | | |-ImplicitCastExpr {{.*}} <col:20> 'int' <LValueToRValue> |
|
|
// CHECK-NEXT: | | | | `-DeclRefExpr {{.*}} <col:20> 'const int' lvalue Var {{.*}} 'b' 'int' |
|
|
// CHECK-NEXT: | | | `-ImplicitCastExpr {{.*}} <col:24> 'int' <LValueToRValue> |
|
|
// CHECK-NEXT: | | | `-DeclRefExpr {{.*}} <col:24> 'int' lvalue Var {{.*}} 'c' 'int' |
|
|
// CHECK-NEXT: | | |-FieldDecl {{.*}} <col:4> col:4{{( imported)?}} implicit 'int' |
|
|
// CHECK-NEXT: | | `-FieldDecl {{.*}} <col:8> col:8{{( imported)?}} implicit 'int &' |
|
|
// CHECK-NEXT: | |-ImplicitCastExpr {{.*}} <col:4> 'int' <LValueToRValue> |
|
|
// CHECK-NEXT: | | `-DeclRefExpr {{.*}} <col:4> 'int' lvalue Var {{.*}} 'b' 'int' |
|
|
// CHECK-NEXT: | |-DeclRefExpr {{.*}} <col:8> 'int' lvalue Var {{.*}} 'c' 'int' |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:29:3, col:19> '(lambda at {{.*}}ast-dump-lambda.cpp:29:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda standard_layout trivially_copyable can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:16, col:19> col:3{{( imported)?}} operator() 'auto () const -> auto' inline |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:18, col:19> |
|
|
// CHECK-NEXT: | | |-FieldDecl {{.*}} <col:4> col:4{{( imported)?}} implicit 'Ts...' |
|
|
// CHECK-NEXT: | | `-FieldDecl {{.*}} <col:10> col:10{{( imported)?}} implicit 'int':'int' |
|
|
// CHECK-NEXT: | |-ParenListExpr {{.*}} <col:4> 'NULL TYPE' |
|
|
// CHECK-NEXT: | | `-DeclRefExpr {{.*}} <col:4> 'Ts...' lvalue ParmVar {{.*}} 'a' 'Ts...' |
|
|
// CHECK-NEXT: | |-IntegerLiteral {{.*}} <col:14> 'int' 12 |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:30:3, col:19> '(lambda at {{.*}}ast-dump-lambda.cpp:30:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:8, col:19> col:3{{( imported)?}} constexpr operator() 'auto () const' inline |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:18, col:19> |
|
|
// CHECK-NEXT: | | |-CXXConversionDecl {{.*}} <col:3, col:19> col:3{{( imported)?}} implicit constexpr operator auto (*)() 'auto (*() const noexcept)()' inline |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:3, col:19> col:3{{( imported)?}} implicit __invoke 'auto ()' static inline |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:31:3, col:17> '(lambda at {{.*}}ast-dump-lambda.cpp:31:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:8, col:17> col:3{{( imported)?}} operator() 'auto ()' inline |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:16, col:17> |
|
|
// CHECK-NEXT: | | |-CXXConversionDecl {{.*}} <col:3, col:17> col:3{{( imported)?}} implicit constexpr operator auto (*)() 'auto (*() const noexcept)()' inline |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:3, col:17> col:3{{( imported)?}} implicit __invoke 'auto ()' static inline |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: |-LambdaExpr {{.*}} <line:32:3, col:18> '(lambda at {{.*}}ast-dump-lambda.cpp:32:3)' |
|
|
// CHECK-NEXT: | |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CXXMethodDecl {{.*}} <col:8, col:18> col:3{{( imported)?}} operator() 'auto () const noexcept' inline |
|
|
// CHECK-NEXT: | | | `-CompoundStmt {{.*}} <col:17, col:18> |
|
|
// CHECK-NEXT: | | |-CXXConversionDecl {{.*}} <col:3, col:18> col:3{{( imported)?}} implicit constexpr operator auto (*)() noexcept 'auto (*() const noexcept)() noexcept' inline |
|
|
// CHECK-NEXT: | | `-CXXMethodDecl {{.*}} <col:3, col:18> col:3{{( imported)?}} implicit __invoke 'auto () noexcept' static inline |
|
|
// CHECK-NEXT: | `-<<<NULL>>> |
|
|
// CHECK-NEXT: `-LambdaExpr {{.*}} <line:33:3, col:27> '(lambda at {{.*}}ast-dump-lambda.cpp:33:3)' |
|
|
// CHECK-NEXT: |-CXXRecordDecl {{.*}} <col:3> col:3{{( imported)?}} implicit{{( <undeserialized declarations>)?}} class definition |
|
|
// CHECK-NEXT: | |-DefinitionData lambda empty standard_layout trivially_copyable literal can_const_default_init |
|
|
// CHECK-NEXT: | | |-DefaultConstructor defaulted_is_constexpr |
|
|
// CHECK-NEXT: | | |-CopyConstructor simple trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | |-MoveConstructor exists simple trivial needs_implicit |
|
|
// CHECK-NEXT: | | |-CopyAssignment trivial has_const_param needs_implicit implicit_has_const_param |
|
|
// CHECK-NEXT: | | |-MoveAssignment |
|
|
// CHECK-NEXT: | | `-Destructor simple irrelevant trivial needs_implicit |
|
|
// CHECK-NEXT: | |-CXXMethodDecl {{.*}} <col:11, col:27> col:3{{( imported)?}} operator() 'auto () const -> int' inline |
|
|
// CHECK-NEXT: | | `-CompoundStmt {{.*}} <col:15, col:27> |
|
|
// CHECK-NEXT: | | `-ReturnStmt {{.*}} <col:17, col:24> |
|
|
// CHECK-NEXT: | | `-IntegerLiteral {{.*}} <col:24> 'int' 0 |
|
|
// CHECK-NEXT: | |-CXXConversionDecl {{.*}} <col:3, col:27> col:3{{( imported)?}} implicit constexpr operator int (*)() 'auto (*() const noexcept)() -> int' inline |
|
|
// CHECK-NEXT: | `-CXXMethodDecl {{.*}} <col:3, col:27> col:3{{( imported)?}} implicit __invoke 'auto () -> int' static inline |
|
|
// CHECK-NEXT: `-<<<NULL>>> |