view tests/mini/bug78.d @ 588:870652a9af23

Constant fold structliteral.member again.
author Christian Kamm <kamm incasoftware de>
date Fri, 12 Sep 2008 12:39:06 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module bug78;

void main()
{
    typedef int int_t = 42;
    int_t i;
    assert(i == int_t.init);
}