Add check for /list set precedence

This commit is contained in:
Jack Firth 2015-07-08 13:22:31 -07:00
parent 1ca0797893
commit 126a2efd39

View File

@ -45,4 +45,8 @@
(check-equal? (lens-set/list '(1 2 3)
first-lens 10
second-lens 20)
'(10 20 3)))
'(10 20 3))
(check-equal? (lens-set/list '(1 2 3)
first-lens 'a
first-lens 'b)
'(b 2 3)))