Files
kotlin-fork/idea/idea-completion/testData/handlers/smart/CallableReference4.kt
T
2015-10-03 10:40:50 +03:00

13 lines
164 B
Kotlin
Vendored

class C
fun C.extFun(s: String){}
fun foo(p: C.(String) -> Unit, c: Char){}
fun foo(p: (String) -> Unit){}
fun bar() {
foo(C::<caret>)
}
// ELEMENT: extFun