Details
-
Type:
Sub-task
-
Status:
Open
-
Priority:
Major
-
Resolution: Unresolved
-
Affects Version/s: 1.7-beta-1
-
Fix Version/s: None
-
Component/s: Compiler
-
Labels:None
-
Testcase included:yes
-
Number of attachments :
Description
package groovy.bugs import static java.lang.System.currentTimeMillis class Groovy3446_Bug extends GroovyTestCase { void testLocalMethodFavoredOverStaticallyImportedMethod() { assert currentTimeMillis() == "local method called" } def currentTimeMillis() { "local method called" } }