cryptol/tests/parser/nested-where.cry

16 lines
227 B
Plaintext
Raw Normal View History

2016-02-19 21:08:20 +03:00
/* This is
2014-04-18 02:34:25 +04:00
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