I've run into this kind of thing several times and...
# announcements
g
I've run into this kind of thing several times and it has often been the worst part of kotlin for me: the problem is when two types have the same short-name, eg:
kotlin.Pair
vs
javafx.util.Pair
. Can these inspections be updated to detect error messages like "expected List<ASDF> but was List<ASDF>"... oh, expected == actual, => fully qualify them => "expected List<com.yourcompany.ASDF> but was List<somebody.else.ASDF>" Maybe this can should be my first PR against the kotlin plugin repo?
👍 1
p
I read somewhere in Jetbrains blog on this exact issue