6 lines
124 B
Kotlin
Vendored
6 lines
124 B
Kotlin
Vendored
// "Remove function body" "true"
|
|
abstract class A() {
|
|
<caret>abstract fun foo() = /*1*/
|
|
{ "" /*2*/ } // 3
|
|
}
|