mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
10 lines
87 B
D
10 lines
87 B
D
module bug76;
|
|
char[] fmt(...)
|
|
{
|
|
return "";
|
|
}
|
|
void main()
|
|
{
|
|
char[] s = fmt();
|
|
}
|