1namespace {
2template <typename T1, typename T2> struct Temp { int x; };
3// This emits the 'Temp' template from this TU.
4Temp<int, float> Template2;
5} // namespace
6
7int other() { return Template2.x; }
8

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