Skip to content

Instantly share code, notes, and snippets.

@JasonGross
Created December 25, 2013 01:12
Show Gist options
  • Select an option

  • Save JasonGross/8119327 to your computer and use it in GitHub Desktop.

Select an option

Save JasonGross/8119327 to your computer and use it in GitHub Desktop.
apply apparently applies fields
Inductive paths A (x : A) : A -> Type := idpath : paths A x x.
Notation "x = y" := (paths _ x y).
Record Contr (A : Type) :=
{
center : A;
contr : forall y, center = y
}.
Goal forall A (x y : A), Contr (x = y) -> x = y.
intros A x y H.
apply H.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment