1 // PR c++/84630
2 // { dg-do compile { target c++11 } }
3 
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>();
9