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