3ef67e1d9d
It's planned to use this inspection for show patchset branches problems during development process.
14 lines
244 B
Kotlin
Vendored
14 lines
244 B
Kotlin
Vendored
package problem.api.kotlin.s
|
|
|
|
import lib.LibSuper
|
|
|
|
class Subclass : LibSuper() {
|
|
override fun test(str: String?) {
|
|
}
|
|
}
|
|
|
|
class SubclassSuppress : LibSuper() {
|
|
@Suppress("IncompatibleAPI")
|
|
override fun test(str: String?) {
|
|
}
|
|
} |