forked from OSchip/llvm-project
9 lines
307 B
C++
9 lines
307 B
C++
template<typename ...Args>
|
|
int f(Args ...args) {
|
|
return sizeof...(args) + sizeof...(Args);
|
|
}
|
|
|
|
// RUN: c-index-test -test-annotate-tokens=%s:1:1:5:1 -std=c++0x %s | FileCheck %s
|
|
// CHECK: Identifier: "args" [3:20 - 3:24] UnexposedExpr=args:2:15
|
|
// CHECK: Identifier: "Args" [3:38 - 3:42] TypeRef=Args:1:22
|