digitalmars.D.bugs - bug http://www.digitalmars.com/d/cpptod.html#properties
- Peter Modzelewski (11/11) Jan 27 2007 Bug on mentioned subpage.
Bug on mentioned subpage. is: Abc a; a.property = 3; // equivalent to a.property(3) int x = a.property; // equivalent to int x = a.property() should be: Abc a=new Abc; a.property = 3; // equivalent to a.property(3) int x = a.property; // equivalent to int x = a.property() Peter Modzelewski www.keyer.team0xf.com
Jan 27 2007