]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.law/ctors5.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / ctors5.C
diff --git a/gcc/testsuite/g++.old-deja/g++.law/ctors5.C b/gcc/testsuite/g++.old-deja/g++.law/ctors5.C
deleted file mode 100644 (file)
index faba9ba..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-// Build don't link: 
-// GROUPS passed constructors
-// ctors file
-// Subject: bug in handling static const object of the enclosing class
-// Date: Tue, 1 Sep 92 10:38:44 EDT
-
-class X
-{ // ERROR - candidate
-  private:
-    int x;
-  public:
-    static const X x0;
-    X( int );
-};
-
-class Y
-{
-  private:
-    X xx;
-  public:
-    Y();
-}
-X::X( int xi )
-{// ERROR -  return.*
-    x = xi;
-}
-
-const X X::x0( 0 );
-
-Y::Y()
-{// ERROR -  no mat
-    xx = X::x0;
-}