Files
clice/tests/Index/SugarType.cpp
2024-10-20 14:08:14 +08:00

16 lines
170 B
C++

namespace test {
struct X {};
struct X x; // elaborated type
} // namespace test
using test::X;
X x2; // using type
using X2 = test::X;
X2 x3; // typedef type