https://kotlinlang.org logo
Title
g

groostav

10/12/2019, 9:46 PM
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

pavi2410

10/12/2019, 10:48 PM
I read somewhere in Jetbrains blog on this exact issue