summaryrefslogtreecommitdiff
path: root/lldb/test/API/commands/expression/class_template_specialization_empty_pack/main.cpp
blob: bc831604aed6d13e3b3f91c7b84c2533fe4d9355 (plain)
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
}