mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-11 07:00:49 +03:00
620e62c8e3
Fix up the test suite. This mostly delays defaulting warnings into "showing specific instance of polymorpic type warnings", but requires actual fixes in a small number of places. Those places were higly questionable, in my opinion.
9 lines
193 B
Plaintext
9 lines
193 B
Plaintext
xs : [10]([8],[8])
|
|
xs = take `{10} zs
|
|
where
|
|
zs : [inf]([8],[8])
|
|
zs = [(0,0)] # [ (0, z) | (z,_) <- drop `{1} zs]
|
|
|
|
vs : [10]([8],[8])
|
|
vs = take `{10} zs where zs = [ (0, z) | (z,_) <- zs]
|