27228c2fcc
#KT-9638 Fixed
16 lines
196 B
Kotlin
Vendored
16 lines
196 B
Kotlin
Vendored
import java.util.ArrayList
|
|
|
|
class B {
|
|
companion object {
|
|
fun foo(){}
|
|
|
|
val property = 0
|
|
|
|
class Nested
|
|
}
|
|
|
|
fun f(): Nested {
|
|
foo()
|
|
property
|
|
}
|
|
} |