fixed build console
[groovy.git] / src / test / gls / scope / BlockScopeVisibilityTest.groovy
blob632923d17acc9d12adac43c8cae7f04a9c0474e7
1 package gls.scope
3 class BlockScopeVisibilityTest extends CompilableTestSupport {
5 public void testForLoopVariableNotVisibleOutside() {
7 assertScript("""
8 i=1
9 for (i in [1,2]) {}
10 assert i==1
11 """)