Allow open callable members in expect interfaces

#KT-42094 fixed
This commit is contained in:
sebastian.sellmair
2020-11-06 17:03:30 +01:00
committed by Sebastian Sellmair
parent bf0156f7c6
commit 06cb64bb51
20 changed files with 289 additions and 10 deletions
@@ -0,0 +1,5 @@
actual interface Interface {
actual fun openFun() = Unit
fun openFunWithOtherParams(param: Int) = Unit
fun openInJs_abstractInJvm() = Unit
}