KJS: don't copy members from native interfaces
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package foo
|
||||
|
||||
@native
|
||||
interface A {
|
||||
val bar: Int get() = noImpl
|
||||
fun foo(): String = noImpl
|
||||
}
|
||||
|
||||
class C : A
|
||||
|
||||
fun box(): String {
|
||||
val c = C()
|
||||
|
||||
return "OK"
|
||||
}
|
||||
Reference in New Issue
Block a user