mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
14 lines
161 B
Kotlin
14 lines
161 B
Kotlin
package k
|
|
|
|
public class Class() {
|
|
public val prop: Int = 0
|
|
fun function() = 1
|
|
}
|
|
|
|
public enum class EnumClass {
|
|
ENTRY
|
|
}
|
|
|
|
|
|
public fun topLevelFun() {
|
|
} |