]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - test/Import/template-specialization/Inputs/T.cpp
Vendor import of clang trunk r300422:
[FreeBSD/FreeBSD.git] / test / Import / template-specialization / Inputs / T.cpp
1 template <typename T> struct A {
2 };
3
4 template <> struct A<int> {
5   struct B {
6     int f;
7   };
8 };
9
10 template <> struct A<bool> {
11   struct B {
12     int g;
13   };
14 };