JS: introduce new flat JS declaration structure
This commit is contained in:
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
interface I {
|
||||
fun foo() = "OK"
|
||||
}
|
||||
|
||||
interface J : I
|
||||
|
||||
class A : J
|
||||
|
||||
fun box() = A().foo()
|
||||
Reference in New Issue
Block a user