Walter Bright schrieb: > Craig Black wrote: >> void setX(int nx) const { x = nx; } > > That should work, but at the moment: > > const void setX(int nx) { x = nx; } > > does work.