diff options
author | Eduardo Julian | 2016-12-29 16:46:15 -0400 |
---|---|---|
committer | Eduardo Julian | 2016-12-29 16:46:15 -0400 |
commit | 859737d8c65327df47c9e400fca3c428bb906afb (patch) | |
tree | c7f9406a518e49668f69d02b04975a0345a38648 /stdlib/test | |
parent | 003d3a63c4c2ec19e42c25b477405774bdcce0d7 (diff) |
- ::: now has support for second-order structure selection.
Diffstat (limited to 'stdlib/test')
-rw-r--r-- | stdlib/test/test/lux/type/auto.lux | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/stdlib/test/test/lux/type/auto.lux b/stdlib/test/test/lux/type/auto.lux index cb58514bf..f759827f0 100644 --- a/stdlib/test/test/lux/type/auto.lux +++ b/stdlib/test/test/lux/type/auto.lux @@ -32,5 +32,9 @@ (L/= (list;n.range +1 +10) (::: map n.inc (list;n.range +0 +9))) ))) - + + (assert "Can automatically select second-order structures." + (::: = + (list;n.range +1 +10) + (list;n.range +1 +10))) )) |