Files
ldc/test/bug74.d
Tomas Lindquist Olsen 282f60e4a0 [svn r123] Fixed some typeinfo module name mismatches.
Fixed D-style varargs returning through pointer.
Fixed converting nested function to delegate.
Added std.string and std.format to Phobos.
2007-11-26 06:45:13 +01:00

13 lines
139 B
D

module bug74;
char[] sformat(char[] s, ...)
{
TypeInfo[] ti = _arguments;
void* args = _argptr;
return "";
}
void main()
{
}