3756b6f54d
#KT-12134 Fixed
12 lines
163 B
Kotlin
Vendored
12 lines
163 B
Kotlin
Vendored
// PROBLEM: none
|
|
package my.simple.name
|
|
|
|
class Child {
|
|
fun f() {
|
|
Helper<caret>.value
|
|
}
|
|
|
|
companion object Helper {
|
|
val value = 1
|
|
}
|
|
} |