This commit is contained in:
wuye9036 2016-06-14 12:19:26 -07:00 committed by GitHub
parent 250c73b42a
commit 45c001f8a3

View File

@ -1469,8 +1469,8 @@ template <typename T> struct Y
};
void poo(){
X<int>::foo();
X<float>::foo();
Y<int>::foo();
Y<float>::foo();
}
```