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

8 lines
194 B
Text

open nat
variable a : nat
-- The variable 'a' in the following definition is not the variable 'a' above
definition tadd : nat → nat → nat
| 0 b := b
| (succ a) b := succ (tadd a b)