Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/native/extensionFunctionAndProperty.kt
T

10 lines
246 B
Kotlin
Vendored

class A
<!WRONG_MODIFIER_TARGET!>external fun A.foo(): Unit = noImpl<!>
<!WRONG_MODIFIER_TARGET!>external var A.bar: String
get() = noImpl
set(value) = noImpl<!>
<!WRONG_MODIFIER_TARGET!>external val A.baz: String
get() = noImpl<!>