// PR c++/84630 // { dg-do compile { target c++11 } } template struct c { template __attribute__((noinline([] {}))) int b(); // { dg-error "wrong number of arguments" } }; c<> a; int i = a.b<42>();