[tests] Added some tests

This commit is contained in:
Igor Chevdar
2021-09-15 14:03:17 +05:00
committed by Space
parent cc75b45479
commit e194a07358
16 changed files with 93 additions and 0 deletions
@@ -0,0 +1,11 @@
// IGNORE_BACKEND: JS_IR
// FILE: 1.kt
class E(val x: String) {
inner class Inner {
inline fun foo(y: String) = x + y
}
}
// FILE: 2.kt
fun box() = E("O").Inner().foo("K")