blob: a126b8512775cd0c1f105758860c62cf3adb366a [file] [log] [blame]
Douglas Gregor557f05c2011-01-19 20:34:17 +00001template<typename ...Args>
2int f(Args ...args) {
3 return sizeof...(args) + sizeof...(Args);
4}
5
Argyrios Kyrtzidis2c7f4f12011-08-15 22:40:24 +00006void test() {
7 int a;
8 decltype(a) b;
Douglas Gregor29c42f22012-02-24 07:38:34 +00009
10 typedef int Integer;
11 typedef float Float;
12 typedef bool Bool;
13 bool b2 = __is_trivially_constructible(Integer, Float, Bool);
Argyrios Kyrtzidis2c7f4f12011-08-15 22:40:24 +000014}
15
Richard Smith9ca5c422011-10-13 22:29:44 +000016// RUN: c-index-test -test-annotate-tokens=%s:1:1:5:1 -fno-delayed-template-parsing -std=c++11 %s | FileCheck %s
Douglas Gregor4c362d52011-10-05 19:00:14 +000017// CHECK: Identifier: "args" [3:20 - 3:24] SizeOfPackExpr=args:2:15
Douglas Gregor557f05c2011-01-19 20:34:17 +000018// CHECK: Identifier: "Args" [3:38 - 3:42] TypeRef=Args:1:22
Argyrios Kyrtzidis2c7f4f12011-08-15 22:40:24 +000019
Richard Smith9ca5c422011-10-13 22:29:44 +000020// RUN: c-index-test -test-annotate-tokens=%s:8:1:9:1 -std=c++11 %s | FileCheck -check-prefix=CHECK-DECLTYPE %s
Argyrios Kyrtzidis2c7f4f12011-08-15 22:40:24 +000021// CHECK-DECLTYPE: Identifier: "a" [8:12 - 8:13] DeclRefExpr=a:7:7
Douglas Gregor29c42f22012-02-24 07:38:34 +000022
23// RUN: c-index-test -test-annotate-tokens=%s:13:1:14:1 -std=c++11 %s | FileCheck -check-prefix=CHECK-TRAIT %s
24// CHECK-TRAIT: Identifier: "Integer" [13:42 - 13:49] TypeRef=Integer:10:15
25// CHECK-TRAIT: Identifier: "Float" [13:51 - 13:56] TypeRef=Float:11:17
26// CHECK-TRAIT: Identifier: "Bool" [13:58 - 13:62] TypeRef=Bool:12:16
27