blob: 697c99f0fc8992253fc8ac9ba07fd16062f82335 [file] [log] [blame]
// REQUIRED_ARGS: -w
// 4375: Dangling else
void main() {
if (true)
if (false) {
assert(6.1);
}
else {
assert(6.2);
}
}