September 01, 2006
import std.cstream: din, dout;

void main()
{
  dout.writefln(bar());
}

void bar() {};

-- 
Andrew C. Edwards
-----------------------------------------------------
The truth we call D, has passed through three stages:
  First ridiculed; Then violently opposed;
  And now, it is being accepted as self-evident.
Consequently:
  C/C++ is rapidly approaching Stage 5 (being forgotten)!
September 03, 2006
Tyro schrieb am 2006-09-01:
> import std.cstream: din, dout;
>
> void main()
> {
>    dout.writefln(bar());
> }
>
> void bar() {};

Added to DStress as http://dstress.kuehne.cn/nocompile/b/bug_cod1_2521_A.d

Thomas