mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +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.
10 lines
118 B
Kotlin
Vendored
10 lines
118 B
Kotlin
Vendored
enum class E {
|
|
E1;
|
|
|
|
fun foo() = {
|
|
test.lineNumber()
|
|
}
|
|
|
|
val prop = test.lineNumber()
|
|
}
|