]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/typeid1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / typeid1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/typeid1.C b/gcc/testsuite/g++.old-deja/g++.jason/typeid1.C
deleted file mode 100644 (file)
index 0f44cb7..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#include <typeinfo>
-#include <iostream>
-
-struct foo { double f(int); };
-
-int main() {
-  double f (int);
-  const std::type_info &r = typeid (f);
-  std::cout << typeid(f).name() << std::endl;
-  std::cout << typeid(foo::f).name() << std::endl;
-}