[
https://issues.apache.org/jira/browse/GROOVY-6809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15505883#comment-15505883
]
Paul King commented on GROOVY-6809:
-----------------------------------
I am thinking this is the expected behavior. The nested class A only has a
no-arg constructor.
> VerifyError With Inner Class
> -----------------------------
>
> Key: GROOVY-6809
> URL: https://issues.apache.org/jira/browse/GROOVY-6809
> Project: Groovy
> Issue Type: Bug
> Components: Compiler
> Affects Versions: 2.3.0, 2.4.0-beta-3
> Reporter: Jeff Brown
>
> The following code compiles but throws a VerifyError at runtime:
> {code:title=Test.groovy|borderStyle=solid}
> class Test {
> static void main(String[] args) {
> def a = new A()
> }
> static class A {
> A() {
> def b = new B()
> }
> void sayA() { println 'saying A' }
> class B extends A {
> public B() {
> super(A.this)
> sayA()
> }
> }
> }
> }
> {code}
> I didn't go back through versions but I tested with 2.3.0 and that shows the
> problem.
> {noformat}
> Caught: java.lang.VerifyError: (class: Test$A$B, method: <init> signature:
> (LTest$A;)V) Expecting to find object/array on stack
> java.lang.VerifyError: (class: Test$A$B, method: <init> signature:
> (LTest$A;)V) Expecting to find object/array on stack
> at Test$A.<init>(Test.groovy:9)
> at Test.main(Test.groovy:4)
> {noformat}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)