lean4-htt/old_tests/tests/lean/guard_names.lean
2018-04-10 12:56:55 -07:00

12 lines
297 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.

inductive tree (α : Type)
| leaf : tree
| node (left : tree) (val : α) (right : tree) : tree
constant foo {α : Type} : tree α → tree α
example {α : Type} (a b : tree α) : foo a = a :=
begin
with_cases { induction a },
{ admit },
case : l v r ih_l ih_r { trace_state, admit },
end