Globbing Should Occur After Brace Expansion
The following should be a valid pattern:
echo {a,b,c}*
Which internally would expand to:
echo [a* b* c*]
and then globbing would be applied at this point
The following should be a valid pattern:
echo {a,b,c}*
Which internally would expand to:
echo [a* b* c*]
and then globbing would be applied at this point