mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 08:31:35 +00:00
12 lines
100 B
Kotlin
12 lines
100 B
Kotlin
class Foo {
|
|
class object {
|
|
val baz = Foo()
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
Foo.<caret>baz
|
|
}
|
|
|
|
|