mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 22:17:52 +08:00
12 lines
172 B
Fish
12 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
|
||
|
|