bd38363077
To explicitly specify which test are failing
9 lines
103 B
Kotlin
Vendored
9 lines
103 B
Kotlin
Vendored
// "Make 'A' 'abstract'" "true"
|
|
interface I {
|
|
fun foo()
|
|
}
|
|
|
|
<caret>class A : I {
|
|
}
|
|
|
|
/* IGNORE_FIR */ |