9 lines
132 B
Kotlin
Vendored
9 lines
132 B
Kotlin
Vendored
// "Safe delete 'something'" "true"
|
|
|
|
abstract class Abstract {
|
|
open fun <caret>something() = "hi"
|
|
}
|
|
|
|
class Test: Abstract() {
|
|
}
|