[IR] update testdata: support IrDynamic* nodes
This commit is contained in:
committed by
teamcityserver
parent
82839e6a67
commit
635cb44bf3
@@ -1,25 +1,20 @@
|
||||
fun testBinaryPlus(d: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d + 1
|
||||
}
|
||||
|
||||
fun testBinaryMinus(d: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d - 1
|
||||
}
|
||||
|
||||
fun testMul(d: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d * 2
|
||||
}
|
||||
|
||||
fun testDiv(d: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d / 2
|
||||
}
|
||||
|
||||
fun testMod(d: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return d % 2
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user