]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/inline5.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / inline5.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/inline5.C b/gcc/testsuite/g++.old-deja/g++.other/inline5.C
deleted file mode 100644 (file)
index 305fd0a..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-// Build don't link:
-// Origin: Matt Austern <austern@isolde.engr.sgi.com>
-// Special g++ Options: -O2
-
-class X;
-
-extern X* tab1;
-
-struct Y {
-  explicit Y(int);
-};
-
-void* x ();
-
-Y k (void *);
-
-inline void f() { k (x ()); }
-
-inline void* x () 
-{
-  return 0;
-}
-
-static void g() {
-  f();
-}
-
-static void h() {
-  f();
-}