mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-11-14 11:16:33 +03:00
869670b2af
Fixes #334
4 lines
92 B
Plaintext
4 lines
92 B
Plaintext
let foo (x:[8]) = xs where xs = [x, xs@0]
|
|
:prove foo 3 == [3,3]
|
|
:prove \x -> foo x == [x,x]
|