Files
ldc/test/bug76.d
Tomas Lindquist Olsen 935dfae9c8 [svn r124] Fixed another D vararg + return in ptr bug.
Fixed some nested function calls failed to resolve the context ptr.
2007-11-26 07:26:21 +01:00

10 lines
87 B
D

module bug76;
char[] fmt(...)
{
return "";
}
void main()
{
char[] s = fmt();
}