4d9b19da82
#KT-18539 Fixed
16 lines
334 B
Plaintext
Vendored
16 lines
334 B
Plaintext
Vendored
// "Create member function 'Foo.get'" "true"
|
|
|
|
import java.util.ArrayList
|
|
|
|
class Foo<T> {
|
|
fun bar(arg: String) { }
|
|
fun <T, V> x (y: Foo<List<T>>, w: ArrayList<V>) {
|
|
val z = y["", w]
|
|
bar(z)
|
|
}
|
|
|
|
private operator fun <V> get(s: String, w: ArrayList<V>): String {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|