]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.oliva/inline1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.oliva / inline1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.oliva/inline1.C b/gcc/testsuite/g++.old-deja/g++.oliva/inline1.C
deleted file mode 100644 (file)
index 01029ff..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-// Build don't link:
-
-// Copyright (C) 1999 Free Software Foundation
-
-// by Alexandre Oliva <oliva@lsd.ic.unicamp.br>
-// Derived from GNU lilypond.
-
-// crash test
-
-struct foo {
-  foo();
-  foo(const foo&);
-  ~foo();
-};
-
-struct bar {
-  foo foo_member;
-  bar();
-  bar(const bar&);
-  // ~bar();
-};
-
-struct baz {
-  void error (bar s);
-};
-
-void fail() __attribute__((noreturn));
-
-void baz::error (bar s) {
-  fail();
-}