fix tests in org.jetbrains.kotlin.checkers

This commit is contained in:
Michael Nedzelsky
2015-09-03 15:25:57 +03:00
parent a3f22939f1
commit bc5c9065d2
2821 changed files with 12932 additions and 12960 deletions
@@ -1,29 +1,29 @@
package
internal fun testExpr(): kotlin.Unit
internal fun testVal(): kotlin.Unit
internal fun testWrong(): kotlin.Unit
public fun testExpr(): kotlin.Unit
public fun testVal(): kotlin.Unit
public fun testWrong(): kotlin.Unit
internal final class A {
public final class A {
public constructor A()
internal final fun divAssign(/*0*/ x: kotlin.Int): kotlin.Unit
public final fun divAssign(/*0*/ x: kotlin.Int): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
internal final fun minusAssign(/*0*/ x: kotlin.Int): kotlin.Unit
internal final fun modAssign(/*0*/ x: kotlin.Int): kotlin.Unit
internal final fun plusAssign(/*0*/ x: kotlin.Int): kotlin.Unit
internal final fun timesAssign(/*0*/ x: kotlin.Int): kotlin.Unit
public final fun minusAssign(/*0*/ x: kotlin.Int): kotlin.Unit
public final fun modAssign(/*0*/ x: kotlin.Int): kotlin.Unit
public final fun plusAssign(/*0*/ x: kotlin.Int): kotlin.Unit
public final fun timesAssign(/*0*/ x: kotlin.Int): kotlin.Unit
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}
internal final class B {
public final class B {
public constructor B()
internal final fun div(/*0*/ x: kotlin.Int): B
public final fun div(/*0*/ x: kotlin.Int): B
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int
internal final fun minus(/*0*/ x: kotlin.Int): B
internal final fun mod(/*0*/ x: kotlin.Int): B
internal final fun plus(/*0*/ x: kotlin.Int): B
internal final fun times(/*0*/ x: kotlin.Int): B
public final fun minus(/*0*/ x: kotlin.Int): B
public final fun mod(/*0*/ x: kotlin.Int): B
public final fun plus(/*0*/ x: kotlin.Int): B
public final fun times(/*0*/ x: kotlin.Int): B
public open override /*1*/ /*fake_override*/ fun toString(): kotlin.String
}