mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 18:40:42 +08:00
13 lines
176 B
Fish
13 lines
176 B
Fish
|
#RUN: %fish --features=ampersand-nobg-in-token %s
|
||
|
|
||
|
echo no&background
|
||
|
# CHECK: no&background
|
||
|
|
||
|
echo background&
|
||
|
# CHECK: background
|
||
|
|
||
|
echo background &
|
||
|
# CHECK: background
|
||
|
|
||
|
wait
|