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
+1 -1
View File
@@ -1,7 +1,7 @@
package
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