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