mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
9 lines
115 B
C
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;
|
|
}
|