parent
2b1e207e02
commit
726a5547de
2 changed files with 3 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ a
|
|||
@[reducible] def out_param (α : Sort u) : Sort u := α
|
||||
|
||||
/-- Auxiliary declaration used to implement the notation (a : α) -/
|
||||
@[reducible] def typed_expr (α : Type u) (a : α) : α := a
|
||||
@[reducible] def typed_expr (α : Sort u) (a : α) : α := a
|
||||
|
||||
/-
|
||||
id_rhs is an auxiliary declaration used in the equation compiler to address performance
|
||||
|
|
|
|||
2
tests/lean/run/1954.lean
Normal file
2
tests/lean/run/1954.lean
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
def all (p : ℕ → Prop) : Prop := ∀x, p x
|
||||
example {p : ℕ → Prop} (h : all p) : p 0 := ‹all p› 0
|
||||
Loading…
Add table
Reference in a new issue