mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
17 lines
256 B
Kotlin
Vendored
17 lines
256 B
Kotlin
Vendored
@file:JvmName("ABC")
|
|
package test;
|
|
|
|
public const val TOP_LEVEL = "O"
|
|
|
|
public object A {
|
|
public const val OBJECT = "K"
|
|
}
|
|
|
|
public class B {
|
|
companion object {
|
|
public const val COMPANION = "56"
|
|
}
|
|
}
|
|
|
|
annotation class Ann(val value: String)
|