Files
openide/plugins/sh/core/testData/oldParser/selectIncompleteParse.sh
Mikhail Mazurkevich b3d360223c [intellij sh] Rename impl => core
GitOrigin-RevId: b0c3fe114c6df798a09d0f46e3a39112e775a0a7
2022-09-10 18:28:42 +00:00

18 lines
370 B
Bash

#error markers must be present, but the incomplete if should be parsed without remaining elements
select f in a; do; done
select FILENAME in *;
do
case $FILENAME in
"$QUIT")
echo "Exiting."
break
;;
*)
echo "You picked $FILENAME ($REPLY)"
;;
esac
done
select a in; do echo; done
echo "Example text"