diff options
author | Eduardo Julian | 2021-08-27 20:59:34 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-08-27 20:59:34 -0400 |
commit | c5b61d2f46ac19bf511197f3a537c4be0f47df33 (patch) | |
tree | cd62d188403e9b3998ba293dc5308719a430f1fe /licentia/source | |
parent | e814f667aed509a70bd386dcd54628929134def4 (diff) |
Updates to the Ruby compiler.
Diffstat (limited to 'licentia/source')
-rw-r--r-- | licentia/source/test/licentia.lux | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/licentia/source/test/licentia.lux b/licentia/source/test/licentia.lux index ec8fc04a9..e9178a996 100644 --- a/licentia/source/test/licentia.lux +++ b/licentia/source/test/licentia.lux @@ -107,7 +107,7 @@ (random.ascii 10)) (def: (variable_list max_size gen_element) - (All [a] (-> Nat (Random a) (Random (List a)))) + (All (_ a) (-> Nat (Random a) (Random (List a)))) (do {! random.monad} [amount (\ ! each (n.% (n.max 1 max_size)) random.nat)] |