blob: f52502beac162fa68ad78b862ac1ab28a3c0bf77 [file] [log] [blame]
fun String.outer(x: Int) {
fun test1(x: Int, y: Int) {
fun test2(x: Int) = this + x + y
test2(y).length + x + y
}
test1(x, x * x)
}