C++ frequently questioned answers

Regan Heath regan at netmail.co.nz
Mon Oct 29 02:45:29 PDT 2007


Ary Borenszweig wrote:
> Try compiling and running these:
> 
> 1.
> ---
> import std.stdio;
> 
> class X {
>     static this() {
>         writefln("static");
>     }
> }
> 
> void main() {
> }
> ---
> 
> 2.
> ---
> import std.stdio;
> 
> class X {
>     static {
>             this() {
>         writefln("static");
>             }
>     }
> }
> 
> void main() {
> }
> ---

Has this been reported as a bug?

Regan



More information about the Digitalmars-d mailing list