4deefce603
KT-7229 Completion for extension functions with complex capture #KT-7901 Fixed #KT-7229 Fixed
12 lines
152 B
Kotlin
Vendored
12 lines
152 B
Kotlin
Vendored
trait I<T>
|
|
|
|
fun <E, T : I<E>> T.ext() : T = this
|
|
|
|
class A<T> : I<T>
|
|
|
|
fun main(args: Array<String>) {
|
|
val a = A<Int>()
|
|
a.<caret>
|
|
}
|
|
|
|
// EXIST: ext |