1int other();
2
3namespace {
4template <typename T1> struct Temp { int x; };
5// This emits the 'Temp' template in this TU.
6Temp<float> Template1;
7} // namespace
8
9int main() {
10 return Template1.x + other(); // break here
11}
12

source code of lldb/test/API/lang/cpp/incompatible-class-templates/main.cpp