xxxxxxxxxx
import std.stdio;
struct S
{
static int i;
int j;
}
S s;
void main()
{
s.i = 1;
s.j = 2;
writeln(s.i); // OK: Static symbols can be used through instances
writeln(S.i); // OK: Static symbols can be used through types
writeln(s.j); // OK: Instance symbols can be used through instances
//writeln(S.j); // Error: Instance symbols cannot be used through types.
}