]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/init16.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / init16.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/init16.C b/gcc/testsuite/g++.old-deja/g++.other/init16.C
deleted file mode 100644 (file)
index 83d5a4e..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-// Origin: Jakub Jelinek <jakub@redhat.com>
-
-struct bar {
-  char c;
-  bar (const char *);
-  bar (const bar &);
-};
-
-struct foo {
-  bar x;
-};
-
-extern const struct foo y = { "foo" };
-
-bar::bar (const bar &ref)
-{
-  c = ref.c;
-}
-
-bar::bar (const char *p)
-{
-  c = p[2];
-}
-
-int main ()
-{
-  return y.x.c != 'o';
-}