Files
kotlin-fork/compiler/testData/ir/irJsText/dynamic/dynamicBinaryLogicalOperator.kt.txt
T
2020-11-26 00:14:44 +03:00

11 lines
262 B
Plaintext
Vendored

fun testAndAnd(d: dynamic): Boolean {
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
}
fun testOrOr(d: dynamic): Boolean {
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
}