Class Grid{
public:
uint xdim;
}
Class Holder : Grid {
uint var;
}
Any of the following should work, but none of them do:
Grid.xdim = 0;
grid = new Grid;
grid.xdim = 0;
holder = new Holder;
holder.xdim = 0;
This is the way static class vars were intended to work. What
magics have I forgotten?
Platform DMD latest, Windows 7 Visual D
