diff options
author | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-17 02:12:02 +0200 |
---|---|---|
committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2025-03-17 02:12:02 +0200 |
commit | 78bf3e039d77e3eb0d5e394273adb69b2b70a76d (patch) | |
tree | 0ed6f2058e348dbd18b0baa9c4ee442206191096 /examples/err.fwd | |
parent | 2367a8b63c3bcfe62d1aaf7d82c0ab3622f3b16c (diff) | |
download | fwd-78bf3e039d77e3eb0d5e394273adb69b2b70a76d.tar.gz fwd-78bf3e039d77e3eb0d5e394273adb69b2b70a76d.zip |
detect leaks
Diffstat (limited to 'examples/err.fwd')
-rw-r--r-- | examples/err.fwd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/err.fwd b/examples/err.fwd new file mode 100644 index 0000000..f2833e2 --- /dev/null +++ b/examples/err.fwd @@ -0,0 +1,17 @@ +do_something((auto, auto) ok); + +/* consume can fail */ +consume(auto a); + +main() +{ + do_something() => auto a, auto b; + consume(a); + /* try commenting out error handler or consume(b); */ + !> e { + consume(b); + error "a failed" + } + + consume(b); +} |