Files
Michael Buch f53f6f7250 [lldb][test] Add basic API tests for DW_TAG_template_alias (#170804)
Basic API tests to check how template aliases are rendered by LLDB
(using both `DW_TAG_template_alias` and `DW_TAG_typedef`, with and
without `-gsimple-template-names`).
2025-12-09 07:48:20 +00:00

17 lines
296 B
C++

template <typename T> using Foo = T;
template <typename T> using Bar = Foo<T>;
template <typename T> struct Container {};
int main() {
Foo<int> f1;
Foo<double> f2;
Bar<int> b1;
Bar<double> b2;
Bar<Foo<int>> bf1;
Bar<Foo<double>> bf2;
Container<Bar<Foo<int>>> cbf1;
return 0;
}