[tests] Added some tests
This commit is contained in:
+11
@@ -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")
|
||||
Reference in New Issue
Block a user