Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/export/jsExportOnNestedDeclarations.kt
T
2021-09-10 16:29:16 +03:00

23 lines
350 B
Kotlin
Vendored

// !OPT_IN: kotlin.js.ExperimentalJsExport
package foo
class C1 {
<!NESTED_JS_EXPORT!>@JsExport<!>
fun f1() {}
<!NESTED_JS_EXPORT!>@JsExport<!>
val p: Int = 10
<!NESTED_JS_EXPORT!>@JsExport<!>
object O
}
fun f2() {
<!NESTED_JS_EXPORT!>@JsExport<!>
fun f3() {}
<!NESTED_JS_EXPORT!>@JsExport<!>
class C2
}