cryptol/tests/parser/nested-where.cry
2016-02-19 10:08:20 -08:00

16 lines
227 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