mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
128 B
C
12 lines
128 B
C
// https://issues.dlang.org/show_bug.cgi?id=22531
|
|
|
|
int main()
|
|
{
|
|
void fn(void);
|
|
fn();
|
|
return 0;
|
|
}
|
|
|
|
void fn(void)
|
|
{
|
|
}
|