view test/imports_1of2.d @ 73:b706170e24a9 trunk

[svn r77] Fixed foreach on slice. Fixed some nested function problems when accessing outer function parameters. Major changes to handling of structs. Initial support for unions. Probably more...
author lindquist
date Wed, 31 Oct 2007 03:11:32 +0100
parents c53b6e3fe49a
children
line wrap: on
line source

module imports_1of2;

import imports_2of2;

void main()
{
    assert(func() == 42);
    S s;
    s.l = 32;
    assert(s.l == 32);
}