diff options
Diffstat (limited to 'tests/callbacks.ek')
| -rw-r--r-- | tests/callbacks.ek | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/callbacks.ek b/tests/callbacks.ek new file mode 100644 index 0000000..0249065 --- /dev/null +++ b/tests/callbacks.ek @@ -0,0 +1,17 @@ +do_stuff(proc '(u32)) +{ + proc(); +} + +other_proc(u32) +{ +} + +other_proc() +{ +} + +main() +{ + do_stuff(other_proc as '(u32)); +} |
