KJS: don't copy members from native interfaces

This commit is contained in:
Zalim Bashorov
2016-11-16 23:27:09 +03:00
parent 01d10a9592
commit e1248f8f0b
3 changed files with 26 additions and 1 deletions
@@ -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"
}