]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.jason/crash12.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / crash12.C
diff --git a/gcc/testsuite/g++.old-deja/g++.jason/crash12.C b/gcc/testsuite/g++.old-deja/g++.jason/crash12.C
deleted file mode 100644 (file)
index 46d6322..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-// Bug: g++ dies instead of flagging this invalid.
-// Build don't link:
-
-inline float  max(float  x, float  y) { return (x>y)?x:y; }
-
-float  b(float  x, float  y, float  z)
-{
-  float f = (y<x)?x:(max<y)?z:y;       // ERROR - 
-  return f;
-}