blob: 870a4066921a4576a129e8898350d9f4a004103a [file] [log] [blame]
def foo() {
def s = <begin>"zxcvbn".substring 2 charAt(1)<end>
}
-----
def foo() {
def s = testMethod()
}
private char testMethod() {
return "zxcvbn".substring(2).charAt(1)
}