[IR] update testdata: support IrDynamic* nodes
This commit is contained in:
committed by
teamcityserver
parent
82839e6a67
commit
635cb44bf3
+6
-12
@@ -2,33 +2,27 @@ fun invoke() {
|
||||
}
|
||||
|
||||
fun test1(a: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return a(1)
|
||||
}
|
||||
|
||||
fun test2(a: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return a.invoke(1)
|
||||
}
|
||||
|
||||
fun test3(a: dynamic, b: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return a(b)
|
||||
}
|
||||
|
||||
fun test4(a: dynamic, b: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return a.invoke(b)
|
||||
}
|
||||
|
||||
fun test5(a: dynamic, b: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return a(b)(b)
|
||||
}
|
||||
|
||||
fun test6(a: dynamic, b: dynamic): dynamic {
|
||||
return error("") /* ERROR: unsupported element type: IrDynamicOperatorExpressionImpl */
|
||||
|
||||
return a(b).invoke(b)
|
||||
}
|
||||
|
||||
fun test7(a: dynamic) {
|
||||
|
||||
Reference in New Issue
Block a user