view test/imports_1of2.d @ 33:bc641b23a714 trunk

[svn r37] * Initial support for foreach on static arrays. Not 100% complete
author lindquist
date Thu, 04 Oct 2007 22:38:53 +0200
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);
}