busybox/shell/hush_test/hush-misc/case3.tests
Denys Vlasenko d029e80187 hush: remove the is_blank dance
function                                             old     new   delta
parse_stream                                        2566    2524     -42

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
2025-08-14 04:04:57 +02:00

7 lines
108 B
Text
Executable file

# had a parser bug which incorrectly detected ";;"
case w in
a) true
;
b);;
esac
echo Should not be reached