Re: Override @property

2017-05-10 Thread Adam D. Ruppe via Digitalmars-d-learn
On Wednesday, 10 May 2017 at 16:40:09 UTC, Aldo wrote: class PictureBox : Control { @property public override void texture(Texture value) { writeln("override"); this.m_texture = value; } } Error: function f340.PictureBox.texture

Override @property

2017-05-10 Thread Aldo via Digitalmars-d-learn
Hello, can you tell me if this compilation error is normal ? class Texture { public this() { } } class Control { private Texture m_texture; @property { public Texture texture() {