testsuite: i386: adapt to -std=gnu23 default change
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr84630.C
blob7d6361b21ea924a615ede6b0ee8f13cc799168d3
1 // PR c++/84630
2 // { dg-do compile { target c++11 } }
4 template <typename...> struct c {
5   template <int> __attribute__((noinline([] {}))) int b();  // { dg-error "wrong number of arguments" }
6 };
7 c<> a;
8 int i = a.b<42>();