You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Felix Schnabel (Jira)" <ji...@apache.org> on 2022/11/22 18:20:00 UTC

[jira] (GROOVY-10813) Cannot create method reference for print or println

    [ https://issues.apache.org/jira/browse/GROOVY-10813 ]


    Felix Schnabel deleted comment on GROOVY-10813:
    -----------------------------------------

was (Author: JIRAUSER295331):
I'm confused, I thought Object::toString has 0 parameters. What parameter are you talking about? The self parameter of the DGM?

> Cannot create method reference for print or println
> ---------------------------------------------------
>
>                 Key: GROOVY-10813
>                 URL: https://issues.apache.org/jira/browse/GROOVY-10813
>             Project: Groovy
>          Issue Type: Bug
>          Components: Static compilation
>    Affects Versions: 3.0.13, 4.0.6
>            Reporter: Eric Milles
>            Assignee: Eric Milles
>            Priority: Major
>         Attachments: screenshot-1.png
>
>
> Consider the following:
> {code:groovy}
> @groovy.transform.CompileStatic
> void p() {
>   java.util.function.Consumer c = this::print
>   c.accept('hello world!')
> }
> p()
> {code}
> Throws error "LambdaConversionException: Type mismatch in captured lambda parameter 0: expecting class _script_, found class java.lang.Object"
> I was trying to print a stream element via "this::println".  This fails also with "System.out::println" as well.  I had to use closure syntax which works just fine.  Lambda throws NPE: "Consumer c = obj -> print(obj)"



--
This message was sent by Atlassian Jira
(v8.20.10#820010)