mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
14 lines
205 B
D
14 lines
205 B
D
// https://issues.dlang.org/show_bug.cgi?id=16107
|
|
|
|
bool check()
|
|
{
|
|
bool result = false;
|
|
|
|
result |= false;
|
|
if (result) goto ret;
|
|
|
|
result |= false;
|
|
if (result) {}
|
|
|
|
ret: return true;
|
|
}
|