[
https://issues.apache.org/jira/browse/GROOVY-10858?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17642198#comment-17642198
]
Eric Milles edited comment on GROOVY-10858 at 12/2/22 5:09 PM:
---------------------------------------------------------------
https://github.com/apache/groovy/commit/798903b2ef9089ebf8b39ce96eda8b654ae8cdb8
https://github.com/apache/groovy/commit/53ebf7ea411efdca3790595020485d89020f8a00
was (Author: emilles):
https://github.com/apache/groovy/commit/798903b2ef9089ebf8b39ce96eda8b654ae8cdb8
> STC method reference return type checking
> -----------------------------------------
>
> Key: GROOVY-10858
> URL: https://issues.apache.org/jira/browse/GROOVY-10858
> Project: Groovy
> Issue Type: Bug
> Components: Static Type Checker
> Affects Versions: 3.0.13, 4.0.6
> Reporter: Eric Milles
> Assignee: Eric Milles
> Priority: Minor
>
> Consider the following:
> {code:groovy}
> @groovy.transform.CompileStatic
> void test() {
> java.util.function.Function<Object,Number> f = Object::toString
> print(f.apply('xxx'))
> }
> {code}
> This code compiles and prints the string instead of a compile-time error
> indicating that String is not compatible with Number.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)