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

9 lines
156 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
fun foo(x: Any) {
js("delete x.foo;")
js("delete x['bar'];")
js("delete x.baz();")
js("delete this;")
}