Create actual fix: add empty brackets for classes in super-type lists

Related to KT-21082
This commit is contained in:
Mikhail Glukhikh
2018-03-02 16:24:34 +03:00
parent ef3e0b01c4
commit fe7b7fb0bd
3 changed files with 15 additions and 3 deletions

View File

@@ -1,6 +1,6 @@
// Sealed: to be implemented
actual sealed class Sealed {
actual object Obj : Sealed
actual class Klass actual constructor(x: Int) : Sealed
actual object Obj : Sealed()
actual class Klass actual constructor(x: Int) : Sealed()
}