aboutsummaryrefslogtreecommitdiff
path: root/tests/callbacks.ek
diff options
context:
space:
mode:
Diffstat (limited to 'tests/callbacks.ek')
-rw-r--r--tests/callbacks.ek4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/callbacks.ek b/tests/callbacks.ek
index 9b9d649..6e753e0 100644
--- a/tests/callbacks.ek
+++ b/tests/callbacks.ek
@@ -1,4 +1,4 @@
-do_stuff(proc @(u32))
+do_stuff(^(u32) proc)
{
proc();
}
@@ -13,5 +13,5 @@ other_proc()
main()
{
- do_stuff(other_proc as @(u32));
+ do_stuff(other_proc as ^(u32));
}