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
1|valeq3:"1"=="1"=true|^|Type argument ("1":String) does not conform to upper bound AnyVal1|valeq3:"1"=="1"=true|^|Type argument ("1":String) does not conform to upper bound AnyVal
Expectation
This code should compile to the value true. The overly restrictive type bound on any.== prevents string type literals being used with any.==.
The text was updated successfully, but these errors were encountered:
Minimized code
Using an example from the documentation of
any.==
Output
Expectation
This code should compile to the value
true
. The overly restrictive type bound onany.==
prevents string type literals being used withany.==
.The text was updated successfully, but these errors were encountered: