Details
-
Sub-task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
1.7-beta-1
-
None
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" } }