diff options
Diffstat (limited to 'stdlib/source/test/lux/macro/template.lux')
-rw-r--r-- | stdlib/source/test/lux/macro/template.lux | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stdlib/source/test/lux/macro/template.lux b/stdlib/source/test/lux/macro/template.lux index 715a0dbe2..ee2176248 100644 --- a/stdlib/source/test/lux/macro/template.lux +++ b/stdlib/source/test/lux/macro/template.lux @@ -24,11 +24,11 @@ (/.let [(!pow/2 <scalar>) [(nat.* <scalar> <scalar>)]] - (def: pow/2 + (def pow/2 (-> Nat Nat) (|>> !pow/2))) -(def: macro_error +(def macro_error (syntax (_ [macro <code>.any]) (function (_ compiler) (case ((macro.expansion macro) compiler) @@ -38,7 +38,7 @@ {try.#Success _} {try.#Failure "OOPS!"})))) -(def: .public test +(def .public test Test (<| (_.covering /._) (do [! random.monad] |