diff options
Diffstat (limited to 'Test')
-rw-r--r-- | Test/A01grammar.ztst | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Test/A01grammar.ztst b/Test/A01grammar.ztst index 93a1ecb8c..f283451ce 100644 --- a/Test/A01grammar.ztst +++ b/Test/A01grammar.ztst @@ -332,6 +332,14 @@ >Status after always block is 1. ?(eval):3: bad substitution + fn() { { return } always { echo always 1 }; echo not executed } + fn + fn() { { echo try 2 } always { return }; echo not executed } + fn +0:Always block interaction with return +>always 1 +>try 2 + # Outputting of structures from the wordcode is distinctly non-trivial, # we probably ought to have more like the following... fn1() { { echo foo; } } |