Files
kotlin-fork/idea/testData/parameterInfo/functionCall/OtherConstructorFromSecondary.kt
T
2015-10-07 23:09:56 +03:00

9 lines
303 B
Kotlin
Vendored

class B private constructor(p: Int) {
constructor() : this(<caret>)
protected constructor(s: String) : this()
}
/*
Text: (<highlight>p: Int</highlight>), Disabled: false, Strikeout: false, Green: false
Text: (<highlight>s: String</highlight>), Disabled: false, Strikeout: false, Green: false
*/