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
Same old, same old (for the image)
I was translating things with the plugin using specifically exceptions. The problem arised when translated the following terms.
Inductive Hsig (A: Type) (P: A -> Type) : Type := | Hexist: forall (a : A), P a -> Hsig A P.
Arguments Hexist {_ _}.
Definition proj1_Hsig {A : Type} {P : A -> Type} (h : Hsig A P ) : A := match h with | Hexist a Pa => a end.
Definition proj2_Hsig (A : Type) (P : A -> Type) (h : Hsig A P) : P (proj1_Hsig h) := match h with | Hexist a Pa => Pa end.
--o-- Effect Translate Hsig using Exception. -x-> Effect Translate proj1_Hsig using Exception.
Reported as suggested in the image
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Same old, same old (for the image)
I was translating things with the plugin using specifically exceptions. The problem arised when translated the following terms.
Inductive Hsig (A: Type) (P: A -> Type) : Type :=
| Hexist: forall (a : A), P a -> Hsig A P.
Arguments Hexist {_ _}.
Definition proj1_Hsig {A : Type} {P : A -> Type} (h : Hsig A P ) : A :=
match h with
| Hexist a Pa => a
end.
Definition proj2_Hsig (A : Type) (P : A -> Type) (h : Hsig A P) : P (proj1_Hsig h) :=
match h with
| Hexist a Pa => Pa
end.
--o--
Effect Translate Hsig using Exception.
-x-> Effect Translate proj1_Hsig using Exception.
Reported as suggested in the image
The text was updated successfully, but these errors were encountered: