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

    fun d(x: Int) {
        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
*/