[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
@@ -15,7 +15,7 @@ open class A {
protected val z: String = "1"
public var zVar: String = "1"
protected set(<!UNUSED_PARAMETER!>value<!>) {}
protected set(value) {}
inline fun call() {
<!PROTECTED_CALL_FROM_PUBLIC_INLINE_ERROR!>test<!>()
@@ -78,7 +78,7 @@ internal class AInternal {
protected val z: String = "1"
public var zVar: String = "1"
protected set(<!UNUSED_PARAMETER!>value<!>) {}
protected set(value) {}
inline fun call() {
@@ -99,4 +99,4 @@ private class X {
}
}
}
}