mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
8 lines
193 B
Kotlin
Vendored
8 lines
193 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
|
|
fun foo(x: Any) {
|
|
js("delete x.foo;")
|
|
js("delete x['bar'];")
|
|
js("delete x.baz<!JSCODE_ERROR!>()<!>;")
|
|
js("delete <!JSCODE_ERROR!>this<!>;")
|
|
} |