Files
kotlin-fork/compiler/testData/psi/recovery/MissingCommaInValueParameterListWithValOrVar.kt
T
2014-03-25 16:49:46 +04:00

7 lines
138 B
Kotlin
Vendored

class Test(val a: Int var b: Int val c: Int) {
override fun toString() = "$a $b $c"
}
fun test(val a: Int var b: Int val c: Int) {
}