]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.pt/t34a.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / t34a.C
diff --git a/gcc/testsuite/g++.old-deja/g++.pt/t34a.C b/gcc/testsuite/g++.old-deja/g++.pt/t34a.C
deleted file mode 100644 (file)
index 7d5aebf..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-// Build don't link: 
-
-struct A {
-  int operator[] (int);
-};
-
-//int A::operator[] (int);
-
-int A::operator[] (int j)
-{
-  return j * j;
-}
-
-extern A a;
-
-int q () { return a[99]; }