From db3809488805fbdcd9d726d9ed45ad7335812bd1 Mon Sep 17 00:00:00 2001 From: Kimplul Date: Fri, 1 May 2026 22:43:13 +0300 Subject: remove examples in favour of tests + Might come up with proper examples at some point, but for now tests at least tell us if they're broken --- examples/pure_move.fwd | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 examples/pure_move.fwd (limited to 'examples/pure_move.fwd') diff --git a/examples/pure_move.fwd b/examples/pure_move.fwd deleted file mode 100644 index d32b9d5..0000000 --- a/examples/pure_move.fwd +++ /dev/null @@ -1,18 +0,0 @@ -requires_pure(&() p) -{ - p(); - /* ok since closure is pure */ - p(); -} - -main() -{ - 20 => int twenty; - requires_pure() &=> { - /* Try uncommenting! - * Not allowed in pure context (though primitives should maybe - * be excluded just to make people's lives easier?) - */ - // twenty + 10 => int thirty; - } -} -- cgit v1.2.3