blob: a83125a354f017663d716898a67824df7d5a04b2 [file] [log] [blame]
class X {
def getFoo(){2}
}
def <selection>s</selection> = new X()
print "foo $s.foo x"
-----
class X {
def getFoo(){2}
}
print "foo ${new X().foo} x"