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

11 lines
173 B
Kotlin
Vendored

class C {
fun foo(){}
protected fun foo(p: Int){}
}
fun f(c: C) {
c.foo(<caret>1)
}
/*
Text: (<no parameters>), Disabled: true, Strikeout: false, Green: true
*/