mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +03:00
76b58f090f
- Closes #2292. Holes are now allowed in the type of inductive parameters. If the type is unsupported, a user error is thrown.
6 lines
81 B
Plaintext
6 lines
81 B
Plaintext
module HoleTypeParameter;
|
|
|
|
type List' (A : _) :=
|
|
| nil'
|
|
| cons' A (List' A);
|