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

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

Eric Milles created GROOVY-10813:
------------------------------------

             Summary: 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: 4.0.6, 3.0.13
            Reporter: Eric Milles


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/lambda syntax which works just fine.



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