[IR] update testdata: support IrDynamic* nodes
This commit is contained in:
committed by
teamcityserver
parent
82839e6a67
commit
635cb44bf3
@@ -1,20 +1,16 @@
|
||||
fun testEqeq(d: dynamic): Boolean {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d == 3
|
||||
}
|
||||
|
||||
fun testExclEq(d: dynamic): Boolean {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d != 3
|
||||
}
|
||||
|
||||
fun testEqeqeq(d: dynamic): Boolean {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d === 3
|
||||
}
|
||||
|
||||
fun testExclEqeq(d: dynamic): Boolean {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d !== 3
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user