14 lines
167 B
Kotlin
Vendored
14 lines
167 B
Kotlin
Vendored
// ERROR: Unresolved reference: yy
|
|
package test
|
|
|
|
class AAA {
|
|
var x = 42
|
|
|
|
fun foo() {
|
|
x = x + 1
|
|
}
|
|
|
|
fun bar(b: B) {
|
|
println(b.yy)
|
|
}
|
|
} |