File tree Expand file tree Collapse file tree 1 file changed +9
-12
lines changed
Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -52,45 +52,42 @@ example (α β : Type) (p q : Prop) : q → β → p → α → True := by
5252 sym_simp []
5353
5454/--
55- trace: α✝ : Sort ?u.1921
56- x : α✝
57- α : Type
55+ trace: α : Type u
56+ x : α
5857p : Prop
5958h : α → p → True → α
6059⊢ α → p → True → α
6160-/
6261#guard_msgs in
63- example (α : Type ) (p : Prop ) (h : α → p → True → α) : α → p → x = x → α := by
62+ example (α : Type u) (x : α ) (p : Prop ) (h : α → p → True → α) : α → p → x = x → α := by
6463 sym_simp []
6564 trace_state
6665 exact h
6766
6867set_option linter.unusedVariables false
6968
7069/--
71- trace: α✝ : Sort u_1
72- x : α✝
73- α : Type
70+ trace: α : Type
71+ x : α
7472q : Prop
7573h : False
7674⊢ ∀ (a b : α), q
7775-/
7876#guard_msgs in
79- example (α : Type ) (q : Prop ) (h : False) : (a : α) → x = x → (b : α) → True → q := by
77+ example (α : Type ) (x : α) ( q : Prop ) (h : False) : (a : α) → x = x → (b : α) → True → q := by
8078 sym_simp []
8179 trace_state
8280 cases h
8381
8482/--
85- trace: α✝ : Sort u_1
86- x : α✝
87- α : Type
83+ trace: α : Sort u
84+ x : α
8885p q : Prop
8986h : False
9087⊢ ∀ (a : α) {b : α}, q
9188-/
9289#guard_msgs in
93- example (α : Type ) (p q : Prop ) (h : False) : (a : α) → x = x → {b : α} → True → (q ∧ True) := by
90+ example (α : Sort u) (x : α ) (p q : Prop ) (h : False) : (a : α) → x = x → {b : α} → True → (q ∧ True) := by
9491 sym_simp [and_true]
9592 trace_state
9693 cases h
You can’t perform that action at this time.
0 commit comments