KT-38003 works for Java implementations too

This commit is contained in:
Valentin Kipyatkov
2020-04-08 14:33:08 +03:00
parent 2b83e3721a
commit 84c9692332
4 changed files with 27 additions and 8 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ interface I {
class C : I {
override fun foo(p: Any) {
println(p)
println(p) // this usage will be shown twice due to bug in Java implementation: https://youtrack.jetbrains.com/issue/IDEA-236958
}
}