]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/inline13.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / inline13.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/inline13.C b/gcc/testsuite/g++.old-deja/g++.other/inline13.C
deleted file mode 100644 (file)
index a24a74e..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-// Build don't link:
-// Origin: Alexandre Oliva <aoliva@cygnus.com>
-
-struct foo {
-  inline void bar();
-  foo();
-};
-
-inline void foo::bar() {
-  switch (0) {
-  case 0:
-    break;
-  }
-}
-
-foo::foo() {
-  bar();
-}