mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
9 lines
148 B
Kotlin
Vendored
9 lines
148 B
Kotlin
Vendored
// http://youtrack.jetbrains.net/issue/KT-20
|
|
|
|
class A() {
|
|
val x = 1
|
|
|
|
companion object {
|
|
val y = <!UNRESOLVED_REFERENCE!>x<!>
|
|
}
|
|
} |