]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.other/inline1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / inline1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.other/inline1.C b/gcc/testsuite/g++.old-deja/g++.other/inline1.C
deleted file mode 100644 (file)
index c4c71b7..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Build don't link:
-// Origin: Martin Reinecke <martin@MPA-Garching.MPG.DE>
-// Special g++ Options: -O2 -Winline
-
-class foo
-{
-  public:
-    float x;
-
-    foo (float xval)
-      : x (xval) {}
-
-    foo operator+ (const foo &foo2) const
-      { return foo (x+foo2.x); }
-};
-
-int main()
-{
-  foo f=foo(1)+foo(2);
-}