You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Daniil Ovchinnikov (JIRA)" <ji...@apache.org> on 2018/09/13 11:59:00 UTC

[jira] [Created] (GROOVY-8788) Inconsistency in extension method selection with @CompileStatic

Daniil Ovchinnikov created GROOVY-8788:
------------------------------------------

             Summary: Inconsistency in extension method selection with @CompileStatic
                 Key: GROOVY-8788
                 URL: https://issues.apache.org/jira/browse/GROOVY-8788
             Project: Groovy
          Issue Type: Bug
          Components: Static compilation, Static Type Checker
    Affects Versions: 2.5.2, 2.4.15
            Reporter: Daniil Ovchinnikov


Given properly registered extension class:
{code:java|title=MyExtensions.java}
public class MyExtensions {

    public static void foo(Object self, String s) {
        System.out.println("Object#foo(String)");
    }

    public static void foo(String self, Object o) {
        System.out.println("String#foo(Object)");
    }
}
{code}
Run
{code:java|title=playground.groovy}
void usageExt() {
    "".foo("") // prints "Object#foo(String)" which is correct
}

@groovy.transform.CompileStatic
void usageExtStatic() {
    "".foo("") // prints "String#foo(Object)" which is questionable
}

usageExt()
usageExtStatic()
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)