[ 
https://issues.apache.org/jira/browse/GROOVY-8254?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16086081#comment-16086081
 ] 

Paul King commented on GROOVY-8254:
-----------------------------------

I suspect that the alias should take precedence over a class in the same source 
unit too except within an import statement; so you could have {{import test.Bar 
as MyBar}}. I'll do some tests and report on the results.

> Alias is ignored in constructor call
> ------------------------------------
>
>                 Key: GROOVY-8254
>                 URL: https://issues.apache.org/jira/browse/GROOVY-8254
>             Project: Groovy
>          Issue Type: Bug
>    Affects Versions: 2.4.12
>            Reporter: Daniil Ovchinnikov
>
> {code:title=foo/Foo.groovy}
> package foo
> class Foo {}
> {code}
> {code:title=test/test.groovy}
> package test
> import foo.Foo as Bar
> class Bar {}
> def regular = new Bar()
> def anonymous = new Bar() {}
> println regular.class // class test.Bar
> println anonymous.class.superclass // class foo.Foo
> {code}
> Either both of the invocations should use alias or both of them should use 
> class defined in the same file. 



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)

Reply via email to