Fix test data: rename 'mod' to 'rem'

This commit is contained in:
Mikhail Zarechenskiy
2016-12-13 21:24:34 +03:00
parent c15c00677e
commit 5b5d09b6b2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ class B() {
<!INAPPLICABLE_OPERATOR_MODIFIER!>operator<!> fun minusAssign(<!UNUSED_PARAMETER!>other<!> : B) : String {
return "s"
}
<!INAPPLICABLE_OPERATOR_MODIFIER!>operator<!> fun modAssign(<!UNUSED_PARAMETER!>other<!> : B) : String {
<!INAPPLICABLE_OPERATOR_MODIFIER!>operator<!> fun remAssign(<!UNUSED_PARAMETER!>other<!> : B) : String {
return "s"
}
<!INAPPLICABLE_OPERATOR_MODIFIER!>operator<!> fun divAssign(<!UNUSED_PARAMETER!>other<!> : B) : String {
+1 -1
View File
@@ -9,8 +9,8 @@ package lol {
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
public final operator fun minusAssign(/*0*/ other: lol.B): kotlin.String
public final operator fun modAssign(/*0*/ other: lol.B): kotlin.String
public final operator fun plusAssign(/*0*/ other: lol.B): kotlin.String
public final operator fun remAssign(/*0*/ other: lol.B): kotlin.String
public final operator fun timesAssign(/*0*/ other: lol.B): kotlin.String
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}