1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-04 06:23:13 +03:00
juvix/tests/negative/258/M.juvix
Jonathan Cubides ee45ddf8c2
Fix #2495 (#2496)
- Closes #2495
2023-11-03 21:23:57 +01:00

9 lines
95 B
Plaintext

module M;
type Nat :=
| O : Nat
| S : Nat -> Nat;
fun : Nat -> Nat
| (S {S {x}}) := x;