Files
kotlin-fork/idea/idea-completion/testData/basic/common/extensions/ComplexCapture2.kt
T
Valentin Kipyatkov 4deefce603 KT-7901 Auto import is not suggested
KT-7229 Completion for extension functions with complex capture

 #KT-7901 Fixed
 #KT-7229 Fixed
2015-06-15 17:10:05 +03:00

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