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

9 lines
115 B
C

/* https://issues.dlang.org/show_bug.cgi?id=23044
*/
void other(int x){}
void fn()
{
int x;
other(x), x = 1;
}