xxxxxxxxxx
void main() {
import std.stdio;
int x;
struct A {
void test() { x = 10; }
}
static struct B {
// void test() { x = 20; } // Error
}
A a;
B b;
a.test();
// b.test();
writeln( x );
}