Bash-4.3 distribution sources and documentation
[platform/upstream/bash.git] / tests / errors1.sub
1 . -i /dev/tty
2
3 f()
4 {
5         return -1
6 }
7
8 set -- a b c
9 shift -4
10
11 f
12
13 for f in 1 2 3; do
14         break -1
15 done
16
17
18 f()
19 {
20         return -25
21 }
22
23 f
24 echo after f
25 exit -25
26
27 exit -56