Sealed constructors are made private in front-end, tests changed accordingly

This commit is contained in:
Mikhail Glukhikh
2015-06-25 12:38:21 +03:00
parent 4517e15299
commit 4d2ba3e890
27 changed files with 28 additions and 28 deletions
@@ -3,7 +3,7 @@ package
internal fun foo(/*0*/ s: Sealed): kotlin.Int
internal sealed class Sealed {
public constructor Sealed(/*0*/ x: kotlin.Int)
private constructor Sealed(/*0*/ x: kotlin.Int)
internal final val x: kotlin.Int
public open override /*1*/ /*fake_override*/ fun equals(/*0*/ other: kotlin.Any?): kotlin.Boolean
public open override /*1*/ /*fake_override*/ fun hashCode(): kotlin.Int