Files
kotlin-fork/compiler/testData/psi/recovery/MissingCommaInConstructorValueParameterList.kt
Alexander Udalov 3dcd85bdb4 Add toString() to Any, fix all tests
#KT-4517 Fixed
2014-03-02 19:54:49 +04:00

3 lines
98 B
Kotlin
Vendored

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