[tests] Added some tests
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
package a
|
||||
|
||||
class E(val x: String) {
|
||||
inner class Inner {
|
||||
inline fun foo(y: String) = x + y
|
||||
}
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
import a.*
|
||||
|
||||
fun main() {
|
||||
println(E("O").Inner().foo("K"))
|
||||
}
|
||||
Reference in New Issue
Block a user