1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-03 10:21:46 +02:00

47599 (tweaked): New test for '{foo,bar}' in command position

It's currently treated as a list but should perhaps be a brace expansion.
This commit is contained in:
Daniel Shahaf 2020-11-23 04:05:56 +00:00
parent 16d5d6a9da
commit 709f1057b7

View file

@ -953,3 +953,11 @@ F:Note that the behaviour of 'exit' inside try-list inside a function is unspeci
0:Comments should be handled in command subst in interactively sourced files
>foo
>bar
function 'ls,/' () {echo success}
{ls,/}
0:workers/47599: current-shell blocks masquerading as brace expansion
>success
F:This test was written to ensure the behaviour doesn't change silently.
F:If this test fails during development, it *might* be appropriate to change
F:its expectations.