diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-03-27 03:18:48 +0300 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-03-27 03:18:48 +0300 |
| commit | 78cf00cb506cb86112cb715e4d2d69ec11b20c42 (patch) | |
| tree | 32a1fd3d1e60343cb1e654900c2d4dedca5e938b /tests/callbacks.cu | |
| parent | 9fb179ab999c3b98caabca09b30c409dc5dd3b3d (diff) | |
| download | ek-78cf00cb506cb86112cb715e4d2d69ec11b20c42.tar.gz ek-78cf00cb506cb86112cb715e4d2d69ec11b20c42.zip | |
change typeof to be a full time type
Diffstat (limited to 'tests/callbacks.cu')
| -rw-r--r-- | tests/callbacks.cu | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/callbacks.cu b/tests/callbacks.cu new file mode 100644 index 0000000..0249065 --- /dev/null +++ b/tests/callbacks.cu @@ -0,0 +1,17 @@ +do_stuff(proc '(u32)) +{ + proc(); +} + +other_proc(u32) +{ +} + +other_proc() +{ +} + +main() +{ + do_stuff(other_proc as '(u32)); +} |
