Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / cpp / incompatible-class-templates / main.cpp
blobe90b96c1dbe2cfcf6a49515bd1ef2b199a44c97b
1 int other();
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
9 int main() {
10 return Template1.x + other(); // break here