Override/Implement members: don't add 'external' modifier

#KT-33466 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-09-07 10:40:30 +09:00
committed by klunnii
parent 4e5c61cd2f
commit bdf502edef
4 changed files with 22 additions and 0 deletions
@@ -0,0 +1,9 @@
open class A {
open external fun foo()
}
class B : A() {
override fun foo() {
super.foo()
}
}