]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.warn/flow1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.warn / flow1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.warn/flow1.C b/gcc/testsuite/g++.old-deja/g++.warn/flow1.C
deleted file mode 100644 (file)
index bb34138..0000000
+++ /dev/null
@@ -1,14 +0,0 @@
-// Test that we don't get a warning about flowing off the end.
-// Build don't link:
-// Special g++ Options: -Wreturn-type
-
-struct A {
-  ~A ();
-};
-
-int f()
-{
-  A a1[2];
-  A a2[2];
-  return 1234567;
-}