Files
kotlin-fork/idea/testData/multiModuleQuickFix/sealed/header/header.kt.after
T
Alexander Udalov d1cff41ce0 Treat nested class of header class as header
Note that the quick fix to implement header class works incorrectly when
that class has nested classes at the moment; this should be fixed
separately

 #KT-15494 Fixed
 #KT-18573 Fixed
2017-08-25 15:40:37 +03:00

7 lines
152 B
Plaintext
Vendored

// "Create header class implementation for platform JS" "true"
header sealed class Sealed {
object Obj : Sealed
class Klass(x: Int) : Sealed
}