mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 10:53:14 +01:00
Fixed D-style varargs returning through pointer. Fixed converting nested function to delegate. Added std.string and std.format to Phobos.
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()
|
|
{
|
|
}
|