15 lines
248 B
Kotlin
Vendored
15 lines
248 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// !OPT_IN: kotlin.js.ExperimentalJsExport
|
|
// !RENDER_DIAGNOSTICS_MESSAGES
|
|
import kotlin.js.JsExport
|
|
|
|
@JsExport
|
|
class ClassA<T : UpperBoundInterface> {
|
|
inner class InnerA {
|
|
|
|
}
|
|
}
|
|
|
|
@JsExport
|
|
interface UpperBoundInterface {}
|