21 lines
528 B
Plaintext
Vendored
21 lines
528 B
Plaintext
Vendored
fun testEqeq(d: dynamic): Boolean {
|
|
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
|
|
|
}
|
|
|
|
fun testExclEq(d: dynamic): Boolean {
|
|
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
|
|
|
}
|
|
|
|
fun testEqeqeq(d: dynamic): Boolean {
|
|
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
|
|
|
}
|
|
|
|
fun testExclEqeq(d: dynamic): Boolean {
|
|
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
|
|
|
}
|
|
|