You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Björn Kautler (Jira)" <ji...@apache.org> on 2020/01/13 09:17:00 UTC

[jira] [Created] (GROOVY-9363) False "Constructor call must be the first statement in a constructor"

Björn Kautler created GROOVY-9363:
-------------------------------------

             Summary: False "Constructor call must be the first statement in a constructor"
                 Key: GROOVY-9363
                 URL: https://issues.apache.org/jira/browse/GROOVY-9363
             Project: Groovy
          Issue Type: Bug
    Affects Versions: 2.5.8
            Reporter: Björn Kautler


Given this script:
{code:groovy}
import java.util.function.Supplier

class Foo {
    Foo(Supplier<?> supplier) {
    }
}

class Bar extends Foo {
    Bar() {
        super { null }
    }
}

new Bar()
{code}
I'd expect everything to be ok, but the compiler complains that "Constructor call must be the first statement in a constructor".

Using {{super(\{ null \})}} instead works fine.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)