11 lines
118 B
Kotlin
Vendored
11 lines
118 B
Kotlin
Vendored
class AAA {
|
|
var x = 42
|
|
|
|
fun foo() {
|
|
x = x + 1
|
|
}
|
|
|
|
fun bar(b: B) {
|
|
println(b.yy)
|
|
}
|
|
} |