[Test] Disable UNUSED_* diagnostics in tests which are not belong to contolFlowAnalysis suite

This commit is contained in:
Dmitriy Novozhilov
2021-03-29 12:14:16 +03:00
committed by TeamCityServer
parent 85949b387e
commit cd890d5833
758 changed files with 1832 additions and 3745 deletions
@@ -17,10 +17,10 @@ fun String.topLevelExtensionFun(){}
val String.topLevelExtensionProperty: Int get() = 1
open class A {
constructor(<!UNUSED_PARAMETER!>p<!>: Int) : this(<!TYPE_MISMATCH!>""<!>) {}
constructor(p: Int) : this(<!TYPE_MISMATCH!>""<!>) {}
@Deprecated("hidden", level = DeprecationLevel.HIDDEN)
constructor(<!UNUSED_PARAMETER!>s<!>: String){}
constructor(s: String){}
@Deprecated("hidden", level = DeprecationLevel.HIDDEN)
open fun memberFun(){}
@@ -71,4 +71,4 @@ class B : A(<!TYPE_MISMATCH!>""<!>) {
class C : A {
constructor() : super(<!TYPE_MISMATCH!>""<!>)
}
}