The following code is accepted by the XL compiler:
abstract class A { void f(); }
This should result in a compiler error, because f() is not defined but also not declared abstract.
Log in to post a comment.