mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00: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
|