dmd/compiler/test/compilable/test22699.c
2022-07-09 18:53:07 +02:00

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;
}