b84260f39f
#KT-13689 Fixed
14 lines
168 B
Plaintext
Vendored
14 lines
168 B
Plaintext
Vendored
class B {
|
|
companion object {
|
|
fun foo(){}
|
|
|
|
val property = 0
|
|
|
|
class Nested
|
|
}
|
|
|
|
fun f(): Nested {
|
|
foo()
|
|
property
|
|
}
|
|
} |