[AMDGPU] Add True16 register classes.
[llvm-project.git] / lldb / test / API / commands / expression / class_template_specialization_empty_pack / main.cpp
blobbc831604aed6d13e3b3f91c7b84c2533fe4d9355
1 template <typename N, class... P>
2 struct A {
3 int foo() { return 1;}
4 };
6 int main() {
7 A<int> b;
8 return b.foo(); // break here