949144e0c0
#KT-5129 Fixed Delete a JPS test that was specifically testing that we would not fail in this situation; now there's a compilation error
8 lines
99 B
Kotlin
Vendored
8 lines
99 B
Kotlin
Vendored
package test
|
|
|
|
public open class Super {
|
|
public fun foo() {}
|
|
}
|
|
|
|
public open class Sub : Super()
|