DEBSOURCES
Skip Quicknav
sources / llvm-toolchain-6.0 / 1%3A6.0.1-10 / clang / test / Import / template-specialization / Inputs / T.cpp
1234567891011121314
template <typename T> struct A { }; template <> struct A<int> { struct B { int f; }; }; template <> struct A<bool> { struct B { int g; }; };