bd38363077
To explicitly specify which test are failing
6 lines
145 B
Kotlin
Vendored
6 lines
145 B
Kotlin
Vendored
// "Remove getter and initializer from property" "true"
|
|
abstract class B {
|
|
abstract val i = <caret>0
|
|
get() = field
|
|
}
|
|
/* IGNORE_FIR */ |