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
If you got an error message, please include it here.
Type Checker: missing type for identifier;
consider adding a type annotation with `:'
identifier: foo3 in: foo3
extra info:
I suppose this is arguably a situation where following the instructions carefully solves the problem. That is, adding
(: foo3 (->* (Boolean) (Boolean) Boolean))
... to the program does allow type-checking to complete. However, this seems like a relatively unexpected failure of the type-checker, and all the more challenging because the annotation requires the use of the ->* form rather than ->.
The text was updated successfully, but these errors were encountered:
What version of Racket are you using?
8.12.900
What program did you run?
What should have happened?
I claim program should type-check...
If you got an error message, please include it here.
Type Checker: missing type for identifier;
consider adding a type annotation with `:'
identifier: foo3 in: foo3
extra info:
I suppose this is arguably a situation where following the instructions carefully solves the problem. That is, adding
(: foo3 (->* (Boolean) (Boolean) Boolean))
... to the program does allow type-checking to complete. However, this seems like a relatively unexpected failure of the type-checker, and all the more challenging because the annotation requires the use of the
->*
form rather than->
.The text was updated successfully, but these errors were encountered: