brintos

brintos / llvm-project-archived public Read only

0
0
Text · 203 B · 0860469 Raw
9 lines · c
1template<typename T> struct Foo;2 3template<typename T>4using Bar = Foo<T>;5 6template<typename T> struct [[clang::preferred_name(Bar<T>)]] Foo {};7 8template <typename T> struct Baz { Foo<char> member; };9