Files
kotlin-fork/idea/testData/quickfix/abstract/abstractFunctionWithBodyWithComments.kt
T

7 lines
118 B
Kotlin
Vendored

// "Remove function body" "true"
abstract class A() {
<caret>abstract fun foo() /*1*/ { // 2
// 3
}
}