]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/offset1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / offset1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/offset1.C b/gcc/testsuite/g++.old-deja/g++.jason/offset1.C
deleted file mode 100644 (file)
index d4fd38b..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-// PRMS Id: 5070 (testcase 1)
-// Build don't link:
-
-struct foo {
-  foo(int x = 0) {};
-  int IsAlive(void) { return 1; }
-};
-
-struct xx {
-  int IsOk(int X);
-  foo a;
-};
-
-int xx::IsOk(int X)
-{
-  return ((xx::a).IsAlive());  // gets bogus error
-}