mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
178 B
D
15 lines
178 B
D
module issue15818;
|
|
|
|
void f(int);
|
|
void f(int);
|
|
void f(int);
|
|
void f(int);
|
|
void f(int);
|
|
|
|
pragma(mangle, "_D10issue158181fFiZv")
|
|
void theVeritableF(int){}
|
|
|
|
void main()
|
|
{
|
|
f(1);
|
|
}
|