mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 00:47:30 +00:00
1e858eae35
This demonstrates that we only write control sequences when interactive.
34 lines
1.1 KiB
Fish
34 lines
1.1 KiB
Fish
#RUN: %fish %s
|
|
echo $foo[0]
|
|
#CHECKERR: {{.*}}checks/zero_based_array.fish (line {{\d+}}): array indices start at 1, not 0.
|
|
#CHECKERR: echo $foo[0]
|
|
#CHECKERR: ^
|
|
echo $foo[ 0 ]
|
|
#CHECKERR: {{.*}}checks/zero_based_array.fish (line {{\d+}}): array indices start at 1, not 0.
|
|
#CHECKERR: echo $foo[ 0 ]
|
|
#CHECKERR: ^
|
|
echo $foo[ 00 ]
|
|
#CHECKERR: {{.*}}checks/zero_based_array.fish (line {{\d+}}): array indices start at 1, not 0.
|
|
#CHECKERR: echo $foo[ 00 ]
|
|
#CHECKERR: ^
|
|
echo $foo[+0]
|
|
#CHECKERR: {{.*}}checks/zero_based_array.fish (line {{\d+}}): array indices start at 1, not 0.
|
|
#CHECKERR: echo $foo[+0]
|
|
#CHECKERR: ^
|
|
echo $foo[-0]
|
|
#CHECKERR: {{.*}}checks/zero_based_array.fish (line {{\d+}}): array indices start at 1, not 0.
|
|
#CHECKERR: echo $foo[-0]
|
|
#CHECKERR: ^
|
|
echo $foo[0..1]
|
|
#CHECKERR: {{.*}}checks/zero_based_array.fish (line {{\d+}}): array indices start at 1, not 0.
|
|
#CHECKERR: echo $foo[0..1]
|
|
#CHECKERR: ^
|
|
echo $foo[1..0]
|
|
#CHECKERR: {{.*}}checks/zero_based_array.fish (line {{\d+}}): array indices start at 1, not 0.
|
|
#CHECKERR: echo $foo[1..0]
|
|
#CHECKERR: ^
|
|
|
|
# and make sure these didn't break
|
|
set -l foo one two three
|
|
echo $foo[001]
|
|
#CHECK: one
|