1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-02 17:01:19 +02:00
zsh/Test/C04funcdef.ztst
2001-04-02 12:32:58 +00:00

14 lines
242 B
Plaintext

%test
function f$$ () {
print regress expansion of function names
}
f$$
0:Regression test: `function f$$ () { ... }'
>regress expansion of function names
function foo () print bar
foo
0:Function definition without braces
>bar