aboutsummaryrefslogtreecommitdiffstats
path: root/test/profile15.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/profile15.awk')
-rw-r--r--test/profile15.awk24
1 files changed, 24 insertions, 0 deletions
diff --git a/test/profile15.awk b/test/profile15.awk
new file mode 100644
index 00000000..29fe9de2
--- /dev/null
+++ b/test/profile15.awk
@@ -0,0 +1,24 @@
+# in namespace awk
+function zzzz()
+{
+ return "zzz"
+}
+
+function nnn()
+{
+ return "nnn"
+}
+
+@namespace "nnn"
+function abc()
+{
+ return "nnn::abc"
+}
+
+@namespace "bbb"
+
+function zzz()
+{
+ return "bbb::zzz"
+}
+