mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-21 09:29:36 +00:00
10 lines
122 B
D
10 lines
122 B
D
// { dg-additional-sources "mod2.d mod3.d" }
|
|
module mod1;
|
|
import mod2;
|
|
|
|
shared int x;
|
|
shared static this()
|
|
{
|
|
x = 1;
|
|
}
|