1 // RUN: %clang_cc1 -std=c++2b -fsyntax-only -ast-print %s | FileCheck %s
3 template <template <class...> class C
>
4 void test_auto_expr(long long y
, auto &&z
) {
7 // CHECK{LITERAL}: (int)(x[1])
9 // CHECK{LITERAL}: (int){x[1]}
12 // CHECK{LITERAL}: (int *)(x)
14 // CHECK{LITERAL}: (int *){x}
17 // CHECK{LITERAL}: auto(z)
19 // CHECK{LITERAL}: auto{z}
22 // CHECK{LITERAL}: new int *(x)
24 // CHECK{LITERAL}: new int *{x}
27 // CHECK{LITERAL}: new auto(z)
29 // CHECK{LITERAL}: new auto{z}
32 // CHECK{LITERAL}: new long long(y)
33 void(new decltype(auto)(y
));
34 // CHECK{LITERAL}: new long long{y}
35 void(new decltype(auto){y
});
37 // CHECK{LITERAL}: new decltype(auto)(z)
38 void(new decltype(auto)(z
));
39 // CHECK{LITERAL}: new decltype(auto){z}
40 void(new decltype(auto){z
});
42 // CHECK{LITERAL}: C(x, y, z)
44 // CHECK{LITERAL}: C{x, y, z}
47 // CHECK{LITERAL}: new C(x, y, z)
49 // CHECK{LITERAL}: new C{x, y, z}