aboutsummaryrefslogtreecommitdiffstats
path: root/tests/func2.sub
diff options
context:
space:
mode:
Diffstat (limited to 'tests/func2.sub')
-rw-r--r--tests/func2.sub27
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/func2.sub b/tests/func2.sub
new file mode 100644
index 0000000..41a3844
--- /dev/null
+++ b/tests/func2.sub
@@ -0,0 +1,27 @@
+funca() (
+ echo func-a
+)
+
+funcb() ( echo func-b )
+
+funcc() (
+ echo func-c
+) 2>&1
+
+type funca
+type funcb
+type funcc
+
+funca
+funcb
+funcc
+
+# when not in posix mode, bash allows non-identifiers as function names
+set +o posix
+foo-bar()
+{
+ :;
+}
+
+declare -F foo-bar
+declare -f foo-bar