bolt/deps/llvm-18.1.8/lldb/test/API/lang/cpp/nested-template/main.cpp
2025-02-14 19:21:04 +01:00

10 lines
112 B
C++

struct Outer {
Outer() {}
template <class T>
struct Inner {};
};
int main() {
Outer::Inner<int> oi;
}