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

class B(): A(5) {
    fun d(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
*/