[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,7 @@
package a
class E(val x: String) {
inner class Inner {
inline fun foo(y: String) = x + y
}
}
@@ -0,0 +1,5 @@
import a.*
fun main() {
println(E("O").Inner().foo("K"))
}