mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
13 lines
230 B
Kotlin
Vendored
13 lines
230 B
Kotlin
Vendored
// "Create subclass" "false"
|
|
// ACTION: Create test
|
|
// ACTION: Convert to sealed class
|
|
// ACTION: Rename file to My.kt
|
|
|
|
enum class <caret>My {
|
|
SINGLE {
|
|
override fun foo(): Int = 0
|
|
};
|
|
|
|
abstract fun foo(): Int
|
|
}
|