Files
ldc/tests/mini/mainvoidreturn.d
Christian Kamm f62df176d6 Allow 'return exp;' for void main().
It's unfortunate that for main the llvm type and D type don't match up...
2009-02-17 18:53:15 +01:00

8 lines
47 B
D

void foo()
{}
void main()
{
return foo();
}