Merge pull request #10789 from tamasvajk/kotlin-useless-params

Kotlin: reduce FPs in useless parameter check for Kotlin code
This commit is contained in:
Tamás Vajk
2022-10-13 09:40:54 +02:00
committed by GitHub
3 changed files with 12 additions and 0 deletions

View File

@@ -7,3 +7,5 @@ class B : A<B, Int> {
println("a")
}
}
fun fn(a: Int = 10) {}

View File

@@ -0,0 +1 @@
| Test.kt:11:8:11:18 | a | The parameter 'a' is never used. |