mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 05:06:06 +00:00
10 lines
252 B
C++
10 lines
252 B
C++
// RUN: %clang_cc1 -ast-print -std=c++2c %s | FileCheck %s
|
|
|
|
template <class... T, unsigned N>
|
|
auto foo(T ...params) {
|
|
return params...[N];
|
|
}
|
|
|
|
// CHECK: template <class ...T, unsigned int N> auto foo(T ...params) {
|
|
// CHECK-NEXT: return params...[N];
|