1 2 3 4 5 6 7 8 9
template <typename N, class... P> struct A { int foo() { return 1;} }; int main() { A<int> b; return b.foo(); // break here }