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