cryptol/tests/issues/issue731.cry
2020-05-18 17:17:58 -07:00

8 lines
166 B
Plaintext

type constraint T n = (fin n, n >= 1)
type constraint Both p q = (p, q)
type constraint Fin2 i j = Both (fin i) (fin j)
type constraint i <=> j = (i <= j, i >= j)