[K/N][Tests] Adjust moved codegen tests to new infra

^KT-61259
This commit is contained in:
Vladimir Sukharev
2023-12-14 20:14:47 +01:00
committed by Space Team
parent 71a834b778
commit 73032213f0
295 changed files with 1362 additions and 1145 deletions
@@ -3,12 +3,10 @@
* that can be found in the LICENSE file.
*/
package codegen.function.defaultsFromFakeOverride
import kotlin.test.*
interface I<T> {
fun f(x: String = "42"): String
fun f(x: String = "OK"): String
}
open class A<T> {
@@ -17,7 +15,7 @@ open class A<T> {
class B : A<String>(), I<String>
@Test fun runTest() {
fun box(): String {
val b = B()
println(b.f())
return b.f()
}