9 lines
119 B
Kotlin
Vendored
9 lines
119 B
Kotlin
Vendored
class A(val x: Int) {
|
|
inner class B {
|
|
fun foo() {
|
|
println(x)
|
|
}
|
|
}
|
|
}
|
|
|
|
// LINES: 1 2 4 |