mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-24 06:30:47 +08:00
9 lines
230 B
Fish
9 lines
230 B
Fish
|
# Test that using variables as command names work correctly.
|
||
|
|
||
|
# Both of these should generate errors about using variables as command names.
|
||
|
# Verify that the expected errors are written to stderr.
|
||
|
exec $test
|
||
|
exec "$test"
|
||
|
|
||
|
exit 0
|