8 lines
130 B
Kotlin
Vendored
8 lines
130 B
Kotlin
Vendored
fun main(args: Array<String>) {
|
|
// companion object usages
|
|
Foo.f()
|
|
val x = Foo
|
|
|
|
Foo.Bar.f()
|
|
val xx = Foo.Bar
|
|
} |