aboutsummaryrefslogtreecommitdiffstats
path: root/tests/type3.sub
diff options
context:
space:
mode:
Diffstat (limited to 'tests/type3.sub')
-rw-r--r--tests/type3.sub18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/type3.sub b/tests/type3.sub
new file mode 100644
index 0000000..a90afef
--- /dev/null
+++ b/tests/type3.sub
@@ -0,0 +1,18 @@
+cd ${TMPDIR:-/tmp}
+
+foo() {
+ rm -f a b c
+ for f in a b c; do
+ cat <<-EOF >> ${f}
+ file
+ EOF
+ done
+ grep . a b c
+}
+
+type foo
+
+eval "$(type foo | sed 1d)"
+foo
+
+rm -f a b c