aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
authorEduardo Julian2016-12-29 16:46:15 -0400
committerEduardo Julian2016-12-29 16:46:15 -0400
commit859737d8c65327df47c9e400fca3c428bb906afb (patch)
treec7f9406a518e49668f69d02b04975a0345a38648 /stdlib/test
parent003d3a63c4c2ec19e42c25b477405774bdcce0d7 (diff)
- ::: now has support for second-order structure selection.
Diffstat (limited to 'stdlib/test')
-rw-r--r--stdlib/test/test/lux/type/auto.lux6
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)))
))