Fixes for tests about mod

#KT-25217
This commit is contained in:
Mikhail Zarechenskiy
2018-09-10 06:31:55 +03:00
parent dee3617dd8
commit 3431123cab
7 changed files with 77 additions and 77 deletions
@@ -43,7 +43,7 @@ public inline operator fun BigDecimal.div(other: BigDecimal): BigDecimal = this.
* Enables the use of the `%` operator for [BigDecimal] instances.
*/
@kotlin.internal.InlineOnly
@Deprecated("Use rem(other) instead", ReplaceWith("rem(other)"), DeprecationLevel.WARNING)
@Deprecated("Use rem(other) instead", ReplaceWith("rem(other)"), DeprecationLevel.ERROR)
public inline operator fun BigDecimal.mod(other: BigDecimal): BigDecimal = this.remainder(other)
/**