view tests/mini/with1.d @ 712:8c0d3ec8dbbb

Fix -of with multiple input files.
author Christian Kamm <kamm incasoftware de>
date Tue, 21 Oct 2008 18:15:34 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module with1;
struct S
{
    int i;
    float f;
}
void main()
{
    S s;
    with(s)
    {
        i = 0;
        f = 3.5;
    }
    assert(s.i == 0);
    assert(s.f == 3.5);
}