cryptol/tests/parser/nested-where.cry

16 lines
228 B
Plaintext
Raw Normal View History

2014-04-18 02:34:25 +04:00
/* This is
a block comment */
test1 = 1 where x = 2
where y = 2
// This is a line comment
test2 = 1
where
x = 2
where
y = 2
test3 = 1 where x = 2
where y = 3