summaryrefslogtreecommitdiff
path: root/plugins/kotlin/idea/tests/testData/parameterInfo/functionCall/NoShadowedDeclarations2.kt
blob: 35916c56b1468a5bbc581c6c27b4df0af7026956 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
fun A.some(s: String) {

}

class A {
    private fun some(s: String) {

    }

    fun usage() {
        // private some shadows extension
        some("lol"<caret>)
    }
}


//Text: (<highlight>s: String</highlight>), Disabled: false, Strikeout: false, Green: true