mirror of
https://github.com/GaloisInc/cryptol.git
synced 2025-01-05 15:07:12 +03:00
6 lines
133 B
Plaintext
6 lines
133 B
Plaintext
|
module comp02 where
|
||
|
|
||
|
// redundant variables in a comprehension causes an error
|
||
|
xs = [ a | a <- [1 .. 10]
|
||
|
| a <- [1 .. 10] ]
|