4deefce603
KT-7229 Completion for extension functions with complex capture #KT-7901 Fixed #KT-7229 Fixed
11 lines
131 B
Kotlin
Vendored
11 lines
131 B
Kotlin
Vendored
interface D<T>
|
|
|
|
fun <T1, T2 : D<T1>> T2.ext() {}
|
|
|
|
class C : D<String> {
|
|
fun foo() {
|
|
this.<caret>
|
|
}
|
|
}
|
|
|
|
// EXIST: ext |