blob: 12520b1da33c9c613311792f5301bfe445f28ecb [file] [log] [blame]
int bar(i = 8, k = i + 1, j = k) {
def q = 6
print j
return i + k + j + q + q + q
}
println(<selection>bar</selection>())
-----
int bar(i = 8, k = i + 1, j = k) {
def q = 6
print j
return i + k + j + q + q + q
}
def q = 6
print 8 + 1
println(8 + 8 + 1 + 8 + 1 + q + q + q)