wuye9036 há 8 anos atrás
pai
commit
45c001f8a3
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      ReadMe.md

+ 2 - 2
ReadMe.md

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