mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
* data classes
* val/var parameters of primary constructors
* enum entry with body
* anonymous `init {}` block in classes
7 lines
146 B
Kotlin
Vendored
7 lines
146 B
Kotlin
Vendored
external enum class E {
|
|
X,
|
|
Y <!EXTERNAL_ENUM_ENTRY_WITH_BODY!>{
|
|
fun foo()
|
|
}<!>,
|
|
Z <!EXTERNAL_ENUM_ENTRY_WITH_BODY!>{}<!>
|
|
} |