mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 02:43:14 +01:00
13 lines
139 B
D
13 lines
139 B
D
module bug74;
|
|
|
|
char[] sformat(char[] s, ...)
|
|
{
|
|
TypeInfo[] ti = _arguments;
|
|
void* args = _argptr;
|
|
return "";
|
|
}
|
|
|
|
void main()
|
|
{
|
|
}
|