blob: 342a092745276a5e14e6e8af9b1ebc4ea1ddb50a [file] [log] [blame]
package groovy.bugs
class Groovy3389Bug extends GroovyTestCase {
void testFieldHidingByLocalVariable() {
assertScript """
class Groovy3389 {
String bar
void doIt() {
def bar = new File('.')
assert bar instanceof File
}
}
def obj = new Groovy3389()
obj.doIt()
"""
}
}