5 lines
294 B
Text
5 lines
294 B
Text
foo : Π (A : Type u_1) [H : inhabited A], A → A
|
||
foo' : Π {A : Type u_1} [H : inhabited A] {x : A}, A
|
||
foo ℕ 10 : ℕ
|
||
definition test : ∀ {A : Type u} [H : inhabited A], @foo' ℕ nat.inhabited (5 + 5) = 10 :=
|
||
λ {A : Type u} [H : inhabited A], @rfl ℕ (@foo' ℕ nat.inhabited (5 + 5))
|