mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
16 lines
170 B
Kotlin
16 lines
170 B
Kotlin
//ALLOW_AST_ACCESS
|
|
package test
|
|
|
|
enum class Enum {
|
|
ENTRY1 ENTRY2
|
|
|
|
inner class Inner
|
|
|
|
class Nested
|
|
|
|
trait Trait
|
|
|
|
val c: Int = 1
|
|
|
|
fun f(): Int = 2
|
|
} |