-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implicits in Interface Functions cause Typecheck Error #336
Comments
The following rewrite doesn't give a type error: module Foo
interface Foo a where
bar : {auto ok: ()} -> a -> a perhaps the implicit argument needs to be the first. |
Could the style in https://github.com/edwinb/Idris2/blob/master/libs/base/Data/Nat.idr#L191 work for you? |
Well, it would typecheck but so would any usages of div that didn't verify that they weren't dividing by zero. (Or ask for such a proof explicitly when it could attempt to derive it) |
div : (n, d: a) -> Not (d = Semiring.zero) -> a |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Steps to Reproduce
Expected Behavior
Typecheck (Like Idris1)
Observed Behavior
Edit: maybe related to #8, however I couldn't change it to a constraint as a workaround since I was restricting the domain of a division to nonzero elements.
The text was updated successfully, but these errors were encountered: