1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-11 08:21:13 +01:00
zsh/Test/C04funcdef.ztst
2001-04-02 12:32:58 +00:00

13 lines
242 B
Text

%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