Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Ubuntu Edgy + JDK 1.6 + Groovy r 5589
Description
The code
class Super { final x = [ ] } class Sub extends Super { final x ; Sub ( ) { x = super.x + [ 'a' ] } }
causes the error:
> groovy super.groovy Caught: java.lang.VerifyError: class Sub overrides final method getX.()Ljava/lang/Object; |
> |