Allow open callable members in expect interfaces
#KT-42094 fixed
This commit is contained in:
committed by
Sebastian Sellmair
parent
bf0156f7c6
commit
06cb64bb51
+3
@@ -0,0 +1,3 @@
|
||||
expect interface Interface {
|
||||
open fun openFun()
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
actual interface Interface {
|
||||
actual fun openFun() = Unit
|
||||
fun openFunWithOtherParams(param: Int) = Unit
|
||||
fun openInJs_abstractInJvm() = Unit
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
actual interface Interface {
|
||||
actual fun openFun() = Unit
|
||||
fun openFunWithOtherParams(param: Double) = Unit
|
||||
fun openInJs_abstractInJvm()
|
||||
}
|
||||
Reference in New Issue
Block a user