Migrate AbstractIrCheckLocalVariablesTableTest to CodegenTestCase stuff

This commit is contained in:
Mikhael Bogdanov
2018-08-24 16:44:03 +02:00
parent ba111d58ae
commit 232170b72a
8 changed files with 24 additions and 32 deletions
@@ -1,4 +1,5 @@
// IGNORE_BACKEND: JVM_IR
// WITH_RUNTIME
class A<T>(val x: String, val y: String, val z: T)
suspend fun <T> foo(a: A<T>, block: suspend (A<T>) -> String): String = block(a)