]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.law/ctors19.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.law / ctors19.C
diff --git a/gcc/testsuite/g++.old-deja/g++.law/ctors19.C b/gcc/testsuite/g++.old-deja/g++.law/ctors19.C
deleted file mode 100644 (file)
index 25c58d6..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-// Build don't link: 
-// GROUPS passed constructors
-// ctor file
-// From: mkohtala@vinkku.hut.fi
-// Date: Tue, 5 Oct 1993 19:31:16 +0200
-// Message-Id: <199310051731.AA12260@lk-hp-11.hut.fi>
-// Subject: Nested class constructor calling bug
-
-class X
-{
-  public:
-    class Y
-    {
-      public:
-        Y(int i) : a(i) {}
-        int a;
-    };
-    static void f(Y y);
-};
-
-void X::f(X::Y y)
-{
-}
-
-int
-main()
-{
-    X::Y y = X::Y(1);   // Tries to call ctor Y instead of X::Y
-    X::f(X::Y(2));      // Tries to call Y instead of X::Y
-
-    return 0;
-}
-