61153c87e0
Introduce KotlinCopyPasteReferenceProcessor
10 lines
157 B
Kotlin
10 lines
157 B
Kotlin
//RUNTIME
|
|
// ALLOW_UNRESOLVED
|
|
|
|
package a
|
|
|
|
fun <T> f(c: Int, b: List<T>) {
|
|
<selection>val r = arrayListOf<T>()
|
|
r.addAll(b)
|
|
val x = c</selection>
|
|
} |