aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/expansion.err
blob: 5fcc58e0861f8287fecdc1e31a066961d70e772c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Array index out of bounds
fish: show "$foo[2]"
                 ^
Array index out of bounds
fish: show $foo[2]
                ^
Array index out of bounds
fish: show "$foo[1 2]"
                   ^
Array index out of bounds
fish: show $foo[1 2]
                  ^
Array index out of bounds
fish: show "$foo[2 1]"
                 ^
Array index out of bounds
fish: show $foo[2 1]
                ^
Invalid index value
fish: echo "$foo[d]"
                 ^
Invalid index value
fish: echo $foo[d]
                ^
Array index out of bounds
fish: echo ()[1]
              ^
Invalid index value
fish: echo ()[d]
              ^
$) is not a valid variable in fish.
fish: echo $$paren
            ^