16 lines
208 B
Text
16 lines
208 B
Text
open nat
|
|
|
|
section
|
|
inductive NatA :=
|
|
| a : NatA
|
|
| s : NatA → NatA
|
|
|
|
open NatA
|
|
|
|
definition foo (n : nat) : NatA :=
|
|
nat.rec_on n a (λ n' r, s r)
|
|
|
|
local attribute foo [coercion]
|
|
|
|
check s 10
|
|
end
|