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

source code of lldb/test/API/commands/expression/class_template_specialization_empty_pack/main.cpp