[FIR] Add test data

This commit is contained in:
Nikolay Lunyak
2021-08-09 16:02:09 +03:00
committed by TeamCityServer
parent 4e56ba2fa4
commit f6ae6af741
69 changed files with 1834 additions and 27 deletions
@@ -0,0 +1,7 @@
val items: List<String>
field = mutableListOf()
fun box(): String {
items.add("OK")
return items.last()
}