mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
7 lines
128 B
C
7 lines
128 B
C
// https://issues.dlang.org/show_bug.cgi?id=22699
|
|
|
|
int foo(int x, int y)
|
|
{
|
|
for (; x = y;)
|
|
return (x = y) ? x : y;
|
|
}
|