mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 15:53:40 +00:00
Comma must present now between enum entries, semicolon between last entry & first member, constructor calls must be without colons / specifiers. A swarm of tests fixed accordingly.
8 lines
173 B
Kotlin
Vendored
8 lines
173 B
Kotlin
Vendored
<!WRONG_MODIFIER_TARGET!>enum<!> interface Some {
|
|
// Enum part
|
|
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED!>D<!>;
|
|
|
|
// Interface like part
|
|
fun test()
|
|
val foo: Int
|
|
} |