blob: 7d11c46f347825d3f93017341f67bdfad76f2e82 [file] [log] [blame]
// REQUIRED_ARGS: -w
// 4375: Dangling else
void main() {
auto x = 1;
if (true)
with (x)
if (false)
assert(90);
else
assert(91);
}