Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/export/jsExportOnNestedDeclarations.fir.kt
T
2023-01-09 08:57:08 +00:00

23 lines
235 B
Kotlin
Vendored

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