[Native] Rename :native:tests-blackbox.native to :native:native.tests

This commit is contained in:
Dmitriy Dolovov
2021-11-11 14:24:14 +03:00
parent 54fbadb9c7
commit 54b09810f0
55 changed files with 51307 additions and 34 deletions
@@ -0,0 +1,12 @@
// KIND: STANDALONE_NO_TR
import kotlin.test.*
fun main(args: Array<String>) {
assertEquals(42, 40 + 2)
println("OK")
}
fun altMain(args: Array<String>) {
error("Not supposed to be called")
}