blob: b91309f2d5e4ebbd8ea7eef129270c0842b0bde4 [file] [log] [blame]
// implicit cast of int to float in ternary expression should fail
void main()
{
float f = true ? 1.0 : 1;
}