aboutsummaryrefslogtreecommitdiff
path: root/test/lambdas.tm
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-21 18:16:32 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-21 18:16:32 -0400
commit7e3e245f6809946ea06ef1998bcabb7e0902fbd7 (patch)
tree67c06d75ecff021cd70073f8a7da278cfe7f6410 /test/lambdas.tm
parent7198afcfec38f8f0cc82e093567e2b098a42970f (diff)
Deprecate `defer`
Diffstat (limited to 'test/lambdas.tm')
-rw-r--r--test/lambdas.tm2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lambdas.tm b/test/lambdas.tm
index 1d1b2775..5508dba2 100644
--- a/test/lambdas.tm
+++ b/test/lambdas.tm
@@ -31,6 +31,6 @@ func main()
fn := func()
return func()
return func()
- defer say("$outer")
+ say("$outer")
return outer
assert fn()()() == "Hello"