You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the following expression fails to compile assertEquals(Some(1), Option(1)) while assertEquals(Option(1), Some(1)) compiles. The compile error message is also cryptic. This issue is about relaxing the type constraints on the method signature to allow more flexible ordering of parameters and have less cryptic compile errors.
The text was updated successfully, but these errors were encountered:
Currently, the following expression fails to compile
assertEquals(Some(1), Option(1))
whileassertEquals(Option(1), Some(1))
compiles. The compile error message is also cryptic. This issue is about relaxing the type constraints on the method signature to allow more flexible ordering of parameters and have less cryptic compile errors.The text was updated successfully, but these errors were encountered: