mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-23 08:13:13 +01:00
12 lines
132 B
D
12 lines
132 B
D
module imports_1of2;
|
|
|
|
import imports_2of2;
|
|
|
|
void main()
|
|
{
|
|
assert(func() == 42);
|
|
S s;
|
|
s.l = 32;
|
|
assert(s.l == 32);
|
|
}
|