[Test] Disable UNUSED_* diagnostics in tests which are not belong to contolFlowAnalysis suite
This commit is contained in:
committed by
TeamCityServer
parent
85949b387e
commit
cd890d5833
@@ -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!>""<!>)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user