From 3d7713b5af2e1229949b31dcce74c7aba1fe042a Mon Sep 17 00:00:00 2001 From: Kimplul Date: Tue, 18 Mar 2025 18:37:00 +0200 Subject: add move queues + Returning blocks don't want to show moves for subsequent statements, but do want to show them for possible closure callers above. --- examples/uniq.fwd | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'examples') diff --git a/examples/uniq.fwd b/examples/uniq.fwd index c1edc1b..cc6e0af 100644 --- a/examples/uniq.fwd +++ b/examples/uniq.fwd @@ -10,11 +10,17 @@ fwd_some(optional![string] o, fwd_insert(unordered_set![string] set, string line, (unordered_set![string]) next); +fwd_destroy(auto a); + /* at some point I'll probably add in a type system as well, but for now let's * pretend we're static-dynamic (or dynamic at compiletime? dunno) */ readlines(unordered_set![string] set, (unordered_set![string]) next) { fwd_getline() => optional![string] line; + !> e { + own set {fwd_destroy(set);} + error e + } fwd_some(line) => string line { /* we had something in our option */ -- cgit v1.2.3