mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
10 lines
112 B
D
10 lines
112 B
D
module imports.testminitBB;
|
|
|
|
import core.stdc.stdio;
|
|
int bb;
|
|
|
|
static this()
|
|
{
|
|
printf("BB\n");
|
|
bb = 1;
|
|
}
|