2015-05-07 21:24:30 +00:00
|
|
|
|
foo : Π (A : Type) [H : inhabited A], A → A
|
|
|
|
|
foo' : Π {A : Type} [H : inhabited A] {x : A}, A
|
|
|
|
|
foo ℕ 10 : ℕ
|
2015-06-13 18:32:59 +00:00
|
|
|
|
definition test : ∀ {A : Type} [H : inhabited A], @foo' num num.is_inhabited 10 = 10 :=
|
2015-05-07 21:24:30 +00:00
|
|
|
|
λ (A : Type) (H : inhabited A), @rfl num (@foo' num num.is_inhabited 10)
|