Update ChangeLogs and version numbers for 2.95.3 release
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / crash12.C
blob46d63225bab0cfef093a3ad5b702f289785867ff
1 // Bug: g++ dies instead of flagging this invalid.
2 // Build don't link:
4 inline float  max(float  x, float  y) { return (x>y)?x:y; }
6 float  b(float  x, float  y, float  z)
8   float f = (y<x)?x:(max<y)?z:y;        // ERROR - 
9   return f;