Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.7.6, 1.8-beta-3
-
None
-
None
Description
The example below is rejected by Java but currently accepted by groovy:
abstract class Super { abstract myMethod() } class Child extends Super { protected myMethod() { true } } new Child()