69f3a64408
Smart completion should work for generic method argument #KT-4929 Fixed
9 lines
104 B
Plaintext
9 lines
104 B
Plaintext
class C<T>
|
|
|
|
fun <T> foo(p1: C<T>, p2: T){}
|
|
|
|
fun bar(s: String) {
|
|
foo(C<String>(), s)
|
|
}
|
|
|
|
//ELEMENT: s |