Files
kotlin-fork/idea/testData/inspections/incompatibleAPI/super.kt
T
Nikolay Krasko 3ef67e1d9d Inspection for highlighting problem API usage
It's planned to use this inspection for show patchset branches problems
during development process.
2018-05-17 12:27:29 +03:00

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?) {
}
}