a20e29e8b7
The JsAllowValueClassesInExternals feature is enabled explicitly, because otherwise it's enabled implicitly depending on the backend. See: org/jetbrains/kotlin/test/builders/LanguageVersionSettingsBuilder.kt:90 A property may have a fake source return kind, while its accessor has a real source kind. In this case we can't "just copy" the property return type down to the accessor.
22 lines
604 B
Kotlin
Vendored
22 lines
604 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
external interface I {
|
|
<!NON_ABSTRACT_MEMBER_OF_EXTERNAL_INTERFACE!>fun foo(): Unit<!> = definedExternally
|
|
|
|
val a: Int?
|
|
get() = definedExternally
|
|
|
|
var b: String?
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
|
|
<!NON_ABSTRACT_MEMBER_OF_EXTERNAL_INTERFACE!>val c: Int<!>
|
|
get() = definedExternally
|
|
|
|
<!NON_ABSTRACT_MEMBER_OF_EXTERNAL_INTERFACE!>var d: String<!>
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
|
|
var e: dynamic
|
|
get() = definedExternally
|
|
set(value) = definedExternally
|
|
} |