mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
Includes changes to decompiled text Old syntax is used in builtins and project code for now
16 lines
320 B
Kotlin
16 lines
320 B
Kotlin
enum class B {}
|
|
|
|
class A {
|
|
<!ILLEGAL_ENUM_ANNOTATION!>enum<!> default object {}
|
|
}
|
|
|
|
<!ILLEGAL_ENUM_ANNOTATION!>enum<!> object O {}
|
|
|
|
<!ILLEGAL_ENUM_ANNOTATION!>enum<!> trait T {}
|
|
|
|
<!ILLEGAL_ENUM_ANNOTATION!>enum<!> fun f() = 0
|
|
|
|
<!ILLEGAL_ENUM_ANNOTATION!>enum<!> val x = 0
|
|
|
|
<!ILLEGAL_ENUM_ANNOTATION!>enum<!> var y = 0
|