mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
8 lines
71 B
Kotlin
8 lines
71 B
Kotlin
// "Create object 'A'" "true"
|
|
package p
|
|
|
|
fun foo() = p.A
|
|
|
|
object A {
|
|
|
|
} |