Why Nemerle does not allow to declare abstract overrides?
class Base {
public virtual Foo() : void {}
}
abstract class Derived : Base {
public abstract override Foo() : void; /* abstract methods are not
allowed to have the 'override' modifier */
}
In C#, it is OK.