llvm/lldb/test/API/commands/expression/class_template_specialization_empty_pack/main.cpp

template <typename N, class... P>
struct A {
    int foo() { return 1;}
};

int main() {
  A<int> b;
  return b.foo(); // break here
}