blob: ca4a74fc2ebea669c207c3efac09256d7c9133fc [file] [log] [blame]
def getGeneratedFileNames() {
def qqq = 239
if (true)
return <selection>new QQQ().test</selection>()
else 42
}
class QQQ {
def test() {
qqq1 = 42;
boo()
boo1()
println(qqq1)
return qqq1
}
def f = this
static void boo() {
println "aaa"
}
void boo1() {
println "aaa"
}
}
-----
def getGeneratedFileNames() {
def qqq = 239
if (true) {
def qqq2 = new QQQ()
qqq1 = 42
qqq2.boo()
qqq2.boo1()
println(qqq1)
return qqq1
}
else 42
}
class QQQ {
def test() {
qqq1 = 42;
boo()
boo1()
println(qqq1)
return qqq1
}
def f = this
static void boo() {
println "aaa"
}
void boo1() {
println "aaa"
}
}