blob: 7ed9fbe892ec1dc43dde3ec82f9792e4b1119d80 [file] [log] [blame]
// PR c++/40566
void
f (int x, int y)
{
int c = x ? 23 : throw "bla";
short d = y ? throw "bla" : 23;
char e = x ? 23 : throw "bla";
long f = x ? 23 : throw "bla";
}