blob: 77cc8480beab2bb8462ffb1909b33e22980a3e75 [file] [log] [blame]
protected static def getGeneratedFileNames() {
foo = 0
while (true) {
foo = <selection>test</selection>()
}
int t = foo
}
static String test() {
def foo = 42;
println(foo)
return foo
}
-----
protected static def getGeneratedFileNames() {
foo = 0
while (true) {
def foo1 = 42
println(foo1)
foo = foo1
}
int t = foo
}
static String test() {
def foo = 42;
println(foo)
return foo
}