Fixes for tests about mod
#KT-25217
This commit is contained in:
@@ -9,4 +9,4 @@ fun test1x(a: Int, b: Int) = a.plus(b)
|
||||
fun test2x(a: Int, b: Int) = a.minus(b)
|
||||
fun test3x(a: Int, b: Int) = a.times(b)
|
||||
fun test4x(a: Int, b: Int) = a.div(b)
|
||||
fun test5x(a: Int, b: Int) = a.mod(b)
|
||||
fun test5x(a: Int, b: Int) = a.rem(b)
|
||||
@@ -84,7 +84,7 @@ FILE fqName:<root> fileName:/simpleOperators.kt
|
||||
VALUE_PARAMETER name:b index:1 type:kotlin.Int flags:
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='test5x(Int, Int): Int'
|
||||
CALL 'mod(Int): Int' type=kotlin.Int origin=null
|
||||
CALL 'rem(Int): Int' type=kotlin.Int origin=null
|
||||
$this: GET_VAR 'value-parameter a: Int' type=kotlin.Int origin=null
|
||||
other: GET_VAR 'value-parameter b: Int' type=kotlin.Int origin=null
|
||||
|
||||
|
||||
Reference in New Issue
Block a user