[FIR-TEST] Move stdlib resolve tests out from resolve directory

This commit is contained in:
Dmitriy Novozhilov
2020-02-12 12:37:21 +03:00
parent 90021f3ece
commit f495c4e215
242 changed files with 140 additions and 138 deletions
@@ -0,0 +1,12 @@
// FULL_JDK
fun foo() {
val y = listOf("Alpha", "Beta")
val x = LinkedHashSet<String>().apply {
addAll(y)
}
val z = ArrayList<String>()
z.addAll(y)
z.add("Omega")
}