forked from OSchip/llvm-project
15 lines
159 B
C++
15 lines
159 B
C++
|
template <typename T> struct A {
|
||
|
};
|
||
|
|
||
|
template <> struct A<int> {
|
||
|
struct B {
|
||
|
int f;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
template <> struct A<bool> {
|
||
|
struct B {
|
||
|
int g;
|
||
|
};
|
||
|
};
|