xref: /llvm-project/lldb/test/API/lang/cpp/incompatible-class-templates/main.cpp (revision b8567559cf3872d0cc2a0ed24a171da8b1ff400f)
1 int other();
2 
3 namespace {
4 template <typename T1> struct Temp { int x; };
5 // This emits the 'Temp' template in this TU.
6 Temp<float> Template1;
7 } // namespace
8 
main()9 int main() {
10   return Template1.x + other(); // break here
11 }
12