1template <typename T> struct TestObj {
2 int f;
3 T g;
4};
5
6int main() {
7 TestObj<int> t{.f: 42, .g: 21};
8 return t.f + t.g; // break here
9}
10

source code of lldb/test/API/lang/cpp/template-specialization-type/main.cpp