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
lib/nock.ex: The pattern [id, key | zero] on line 1249 doesn't have the type noun_atom() | noun_cell()lib/nock.ex: The list on line 1277 is expected to have type failed() but it has type nonempty_list()1275 @spec foo() :: failed()1276 def foo() do1277 [2, 1 | 0]1278 end1279 end
To get this to work, I have to replace this with this
@typefailed()::list(number)|number()
As it resolves [...] as solely a list, and then number as the termination matching
The text was updated successfully, but these errors were encountered:
Here is a reproducible example
Ends up with the message
To get this to work, I have to replace this with this
As it resolves
[...]
as solely a list, and thennumber
as the termination matchingThe text was updated successfully, but these errors were encountered: