xref: /llvm-project/lldb/test/API/lang/cpp/incompatible-class-templates/other.cpp (revision b8567559cf3872d0cc2a0ed24a171da8b1ff400f)
1*b8567559SRaphael Isemann namespace {
2*b8567559SRaphael Isemann template <typename T1, typename T2> struct Temp { int x; };
3*b8567559SRaphael Isemann // This emits the 'Temp' template from this TU.
4*b8567559SRaphael Isemann Temp<int, float> Template2;
5*b8567559SRaphael Isemann } // namespace
6*b8567559SRaphael Isemann 
other()7*b8567559SRaphael Isemann int other() { return Template2.x; }
8