mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-24 15:08:58 +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] ]
|