- Deprecate --test-nocapture in favour of --test-show-output #2588.

This commit is contained in:
Christoffer Lerno
2025-11-24 11:46:06 +01:00
parent 98155b61f1
commit 1b49ebf855
6 changed files with 10 additions and 7 deletions

View File

@@ -503,7 +503,7 @@ macro void? @try(#v, #expr) @builtin @maydiscard
{
char[] data;
// Read until end of file
if (@try_catch(data, load_line(), io::EOF)) break;
if (@try_catch(data, load_line(), io::EOF)!) break;
.. use data ..
}