brintos

brintos / llvm-project-archived public Read only

0
0
Text · 252 B · 157abeb Raw
10 lines · cpp
1// RUN: %clang_cc1 -ast-print -std=c++2c %s | FileCheck %s2 3template <class... T, unsigned N>4auto foo(T ...params) {5  return params...[N];6}7 8// CHECK: template <class ...T, unsigned int N> auto foo(T ...params) {9// CHECK-NEXT: return params...[N];10