Added gitignore entries needed to ignore derived objects generated from full build...
[bash.git] / tests / func2.sub
blob41a3844bdb72c662c4badab016d795065e98f67d
1 funca() (
2         echo func-a
5 funcb() ( echo func-b )
7 funcc() (
8         echo func-c
9 ) 2>&1
11 type funca
12 type funcb
13 type funcc
15 funca
16 funcb
17 funcc
19 # when not in posix mode, bash allows non-identifiers as function names
20 set +o posix
21 foo-bar()
23         :;
26 declare -F foo-bar
27 declare -f foo-bar