mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
324 B
Plaintext
Vendored
12 lines
324 B
Plaintext
Vendored
// "Create member function 'Foo.set'" "true"
|
|
|
|
class Foo<T> {
|
|
fun <T> x (y: Foo<List<T>>, w: java.util.ArrayList<T>) {
|
|
y["", w] = w
|
|
}
|
|
|
|
private operator fun set(s: String, w: T, value: T) {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|