Hi
In the documentation about classses http://www.digitalmars.com/d/class.html
I read :
Final classes cannot be subclassed:
final class A { }
class B : A { } // error, class A is final
But when I try to compile it, theres no error. Seems quite unusual to me.
Is this a bug?
Jan