mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
12 lines
220 B
Kotlin
Vendored
12 lines
220 B
Kotlin
Vendored
class C {
|
|
fun foo(){}
|
|
protected fun foo(p: Int){}
|
|
}
|
|
|
|
fun f(c: C) {
|
|
c.foo(<caret>1)
|
|
}
|
|
// TODO: wrong name resolution. see: KT-11763
|
|
/*
|
|
Text: (<no parameters>), Disabled: true, Strikeout: false, Green: false
|
|
*/ |