We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
trait T2 {} impl<U> T2 for U {}
Open this code snippet in the playground
This code gets translated as:
class t_T2 (v_Self: Type0) = { __marker_trait_t_T2:Prims.unit } [@@ FStar.Tactics.Typeclasses.tcinstance] let impl (#v_U: Type0) : t_T2 v_U = { __marker_trait = () }
There is an inconsistency between __marker_trait_t_T2 in the type class definition and __marker_trait in the impl.
__marker_trait_t_T2
__marker_trait
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Open this code snippet in the playground
This code gets translated as:
There is an inconsistency between
__marker_trait_t_T2
in the type class definition and__marker_trait
in the impl.The text was updated successfully, but these errors were encountered: