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:
committed by
Nikolay Krasko
parent
a95ec598f2
commit
3ef67e1d9d
@@ -0,0 +1,17 @@
|
||||
package problem.api.kotlin.classes
|
||||
|
||||
import lib.LibClass
|
||||
|
||||
fun ktTest() {
|
||||
LibClass()
|
||||
}
|
||||
|
||||
class KtUsage : LibClass()
|
||||
|
||||
fun ktTestSuppress() {
|
||||
@Suppress("IncompatibleAPI")
|
||||
LibClass()
|
||||
}
|
||||
|
||||
@Suppress("IncompatibleAPI")
|
||||
class KtUsageSuppress : LibClass()
|
||||
Reference in New Issue
Block a user