[JS, Frontend] Add test with extension member in external interface

This commit is contained in:
Ilya Goncharov
2021-06-11 11:57:44 +03:00
committed by TeamCityServer
parent 83c1a119ee
commit eed23ddbe3
4 changed files with 24 additions and 0 deletions
@@ -0,0 +1,9 @@
// !LANGUAGE: +JsEnableExtensionFunctionInExternals
external interface Foo {
fun foo(): String.() -> Unit
}
fun box(): String {
return "OK"
}