[FIR-TEST] Move analysis tests to separate module
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
data class D(val x: Int, val y: String)
|
||||
|
||||
fun foo(list: List<D>) {
|
||||
for ((x, y) in list) {
|
||||
}
|
||||
val (x, y) = list.first()
|
||||
list.forEach { (x, y) ->
|
||||
println(x)
|
||||
println(y)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user