]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/access10.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / access10.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/access10.C b/gcc/testsuite/g++.old-deja/g++.other/access10.C
deleted file mode 100644 (file)
index bca6ac3..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-// Test that defining a static member of private type with the () syntax works.
-// Build don't link:
-
-class A {
-  private:
-    struct B { B(int) {} };
-    static B b;
-};
-A::B A::b (1);