In the standard library, we should use explicit universe variables for universe polymorphic definitions. Users that want to declare universe polymorphic definitions but do not want to provide universe level parameters should use Type _ or Type*
12 lines
407 B
Text
12 lines
407 B
Text
open tactic
|
|
axiom Sorry : ∀ {A:Type*}, A
|
|
|
|
example (a b c : nat) (h₀ : c > 0) (h₁ : a > 1) (h₂ : b > 0) : a + b + c = 0 :=
|
|
by do
|
|
[x, y] ← match_target_subexpr `(λ x y : nat, x + y) | failed,
|
|
trace "------ subterms -------",
|
|
trace x, trace y,
|
|
(h, [z]) ← match_hypothesis `(λ x : nat, x > 1) | failed,
|
|
trace "--- hypothesis of the form x > 1 ---",
|
|
trace h, trace z,
|
|
refine `(Sorry)
|