Files
kotlin-fork/idea/testData/multiModuleQuickFix/sealedSubclass/header/header.kt.after
T
Mikhail Glukhikh 90e4413fc9 Create actual: put top-level actual declarations in the same file
When multiple expect declarations are in the same file,
and some of them already have actual declarations for this platform,
then "Create actual fix" put other declarations into the same file
with existing actual declarations

So #KT-17058 Fixed
So #KT-21082 Fixed
2018-03-06 14:32:30 +03:00

8 lines
141 B
Plaintext
Vendored

// "Create actual class for platform JS" "true"
expect sealed class Sealed
expect object Obj : Sealed
expect class Klass(x: Int) : Sealed