Open marcosh opened 7 years ago
If I am importing two modules that expose the same type
import A exposing (T) import B exposing (T)
and I'm using A.T where I am declaring instead a B.T, the compiler will return a message like
A.T
B.T
The type annotation says it is a: T But the definition is a: T
It would be much more helpful if it would explicitely mention A and B.
A
B
You could see an example of this error here
If I am importing two modules that expose the same type
and I'm using
A.T
where I am declaring instead aB.T
, the compiler will return a message likeIt would be much more helpful if it would explicitely mention
A
andB
.You could see an example of this error here