cryptol/tests/parser/infix-2.cry
2015-06-10 20:59:29 -07:00

13 lines
255 B
Plaintext

import Cryptol as c
/**
* Test that qualified infix operators work
*/
test1 = [c::True,c::False] c::+ [c::True,c::False] c::== c::zero
/**
* Test that qualified operators used in prefix form work
*/
test2 = (c::+) c::zero [c::True] c::== [c::True]