view test/imports_1of2.d @ 202:56e0c5b1d428 trunk

[svn r218] Added test results for [217]
author lindquist
date Mon, 12 May 2008 23:49:07 +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);
}