Daily bump.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic-mangle5a.C
blobeb1b0847a9903ab8792d6ae77320011efdb17548
1 // { dg-do compile { target c++11 } }
2 // { dg-additional-options "-fabi-version=18 -fabi-compat-version=18" }
4 template<int...T> using N = int[sizeof...(T)];
5 template<int...A> void f(N<(A+1)...> &);
7 void g()
9   int arr[3];
11   // { dg-final { scan-assembler "_Z1fIJLi1ELi2ELi3EEEvRAsZplT_Li1E_i" } }
12   f<1,2,3>(arr);