mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 17:07:44 +00:00
11 lines
172 B
Fish
11 lines
172 B
Fish
# RUN: %fish %s
|
|
|
|
# Ensure we don't hang on deep command substitutions - see #6503.
|
|
|
|
set s "echo hooray"
|
|
for i in (seq 63)
|
|
set s "echo ($s)"
|
|
end
|
|
eval $s
|
|
#CHECK: hooray
|
|
|