[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
+2
-2
@@ -3,7 +3,7 @@ package c
|
||||
|
||||
public abstract class TestBug1() {
|
||||
|
||||
public fun m3(<!UNUSED_PARAMETER!>position<!>: Int) {
|
||||
public fun m3(position: Int) {
|
||||
position(m1().second<!UNNECESSARY_NOT_NULL_ASSERTION!>!!<!>)
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ public abstract class TestBug1() {
|
||||
|
||||
<!INCOMPATIBLE_MODIFIERS!>private<!> <!INCOMPATIBLE_MODIFIERS!>abstract<!> fun m1(): Pair<Int, Int>
|
||||
|
||||
private fun position(<!UNUSED_PARAMETER!>p<!>: Int) {}
|
||||
private fun position(p: Int) {}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user