cryptol/tests/parser/nested-where.cry
2014-04-17 15:34:25 -07:00

16 lines
228 B
Plaintext

/* 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