Files
kotlin/idea/testData/parameterInfo/functionCall/PrivateConstructor.kt
Valentin Kipyatkov 4256fb9c6e Checked that KT-9006 has been fixed
#KT-9006 Obsolete
2015-10-07 23:09:55 +03:00

9 lines
187 B
Kotlin
Vendored

class A private constructor(f: Boolean) {
constructor(): this(true)
}
fun test() {
val a = A(<caret>)
}
//Text: (<no parameters>), Disabled: false, Strikeout: false, Green: true