mirror of
https://github.com/GaloisInc/cryptol.git
synced 2024-12-16 11:22:33 +03:00
8 lines
205 B
Plaintext
8 lines
205 B
Plaintext
|
f : [8] -> [8]
|
||
|
f x = 20 + x
|
||
|
|
||
|
// Note! This test case may be a bit fragile, as it
|
||
|
// tests the output of tracing, which depends on evaluation
|
||
|
// order.
|
||
|
traceTest = [ trace "Hi!" i (f i) | i <- [0 .. 10 ] ]
|