Inspection for highlighting problem API usage

It's planned to use this inspection for show patchset branches problems
during development process.
This commit is contained in:
Nikolay Krasko
2018-03-19 01:38:44 +03:00
committed by Nikolay Krasko
parent a95ec598f2
commit 3ef67e1d9d
25 changed files with 849 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
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?) {
}
}