Files
kotlin-fork/idea/testData/intentions/addMissingClassKeyword/sealed.kt
T
Toshiaki Kameyama b4c62cdb52 Introduce "Add missing 'class' keyword" intention
#KT-14884 Fixed
2020-04-15 14:53:52 +02:00

4 lines
62 B
Kotlin
Vendored

// DISABLE-ERRORS
sealed <caret>Foo {
abstract fun foo()
}