lean4-htt/tests/lean/run/incmd.lean
2020-12-21 16:25:01 +01:00

15 lines
224 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

variable {α : Type} in
def f : αα :=
fun x => x
#check @f
variables {α : Type} {β : Type} in
variable (h : αα) in
set_option pp.raw.maxDepth 1000 in
def g : α → β → α :=
fun x _ => h x
#check @g