blob: 632923d17acc9d12adac43c8cae7f04a9c0474e7 [file] [log] [blame]
package gls.scope
class BlockScopeVisibilityTest extends CompilableTestSupport {
public void testForLoopVariableNotVisibleOutside() {
assertScript("""
i=1
for (i in [1,2]) {}
assert i==1
""")
}
}