[Tests] Migrate backend-independent tests from native to compiler/testData.

^KT-65979
This commit is contained in:
Vladimir Sukharev
2024-02-25 18:25:58 +01:00
committed by Space Team
parent dd9332d9e1
commit febac0dd5f
640 changed files with 68168 additions and 6313 deletions
+68
View File
@@ -0,0 +1,68 @@
/*
* Copyright 2010-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
* that can be found in the LICENSE file.
*/
// JVM_ABI_K1_K2_DIFF: KT-63864
// WITH_STDLIB
import kotlin.test.*
val sb = StringBuilder()
open class A<T, U> {
open fun foo(x: T, y: U) {
sb.appendLine(x.toString())
sb.appendLine(y.toString())
}
}
interface I1<T> {
fun foo(x: Int, y: T)
}
interface I2<T> {
fun foo(x: T, y: Int)
}
class B : A<Int, Int>(), I1<Int>, I2<Int> {
var z: Int = 5
var q: Int = 7
override fun foo(x: Int, y: Int) {
z = x
q = y
}
}
fun zzz(a: A<Int, Int>) {
a.foo(42, 56)
}
fun box(): String {
val b = B()
zzz(b)
val a = A<Int, Int>()
zzz(a)
sb.appendLine(b.z.toString())
sb.appendLine(b.q.toString())
val i1: I1<Int> = b
i1.foo(56, 42)
sb.appendLine(b.z.toString())
sb.appendLine(b.q.toString())
val i2: I2<Int> = b
i2.foo(156, 142)
sb.appendLine(b.z.toString())
sb.appendLine(b.q.toString())
assertEquals("""
42
56
42
56
56
42
156
142
""".trimIndent(), sb.toString())
return "OK"
}