Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / lldb / test / API / lang / cpp / nested-template / main.cpp
blob06d1094880964cbe54e432836b6bd355d42a3c92
1 struct Outer {
2 Outer() {}
4 template <class T>
5 struct Inner {};
6 };
8 int main() {
9 Outer::Inner<int> oi;