Files
kotlin-fork/compiler/testData/psi/recovery/MissingCommaInConstructorValueParameterList.kt
T
Alexey Sedunov 446941257b KT-4392 #Fixed
2014-01-09 15:20:17 +04:00

3 lines
89 B
Kotlin

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