]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/local.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / local.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/local.C b/gcc/testsuite/g++.old-deja/g++.jason/local.C
deleted file mode 100644 (file)
index 6159db0..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// General testcase for local classes.
-
-int x;
-void f ()
-{
-  static int s;
-  int x;                       // ERROR - referenced below
-  extern int q();
-
-  struct local {
-    int g() { return x; }      // ERROR - automatic variable
-    int h() { return s; }      // gets bogus error - local class
-    int k() { return ::x; }    // OK
-    int l() { return q(); }    // OK
-    int m();                   // OK - not defined
-    static int foo;            // ERROR - static data member of local class
-  };
-}
-
-local* p = 0;                  // ERROR - no such type in scope