summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/parameterInfo/functionCall/InheritedWithCurrentFunctions.kt
blob: ef365038939c705545c9272f27a8bfd13ebf63a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
open class A(x: Int) {
    fun m(x: Int) = 1
    fun m(x: Int, y: Boolean) = 2
}

class B(): A(5) {
    fun m(x: Int, y: Boolean, z: String) {
        m(1, <caret>false)
    }
}
/*
Text: (x: Int), Disabled: true, Strikeout: false, Green: false
Text: (x: Int, <highlight>y: Boolean</highlight>), Disabled: false, Strikeout: false, Green: true
Text: (x: Int, <highlight>y: Boolean</highlight>, z: String), Disabled: false, Strikeout: false, Green: false
*/