mirror of
https://github.com/autc04/Retro68.git
synced 2025-03-02 10:30:00 +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;
|
||
|
}
|