mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
15 lines
346 B
Kotlin
Vendored
15 lines
346 B
Kotlin
Vendored
// "Safe delete 'something'" "false"
|
|
// ACTION: Convert function to property
|
|
// ACTION: Convert member to extension
|
|
// ACTION: Convert to block body
|
|
// ACTION: Make open
|
|
// ACTION: Move to companion object
|
|
// ACTION: Specify return type explicitly
|
|
|
|
abstract class Abstract {
|
|
fun <caret>something() = "hi"
|
|
}
|
|
|
|
class Test: Abstract(), Inter {
|
|
}
|