aboutsummaryrefslogtreecommitdiffstats
path: root/test/profile16.awk
diff options
context:
space:
mode:
Diffstat (limited to 'test/profile16.awk')
-rw-r--r--test/profile16.awk16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/profile16.awk b/test/profile16.awk
new file mode 100644
index 00000000..e0c9c42b
--- /dev/null
+++ b/test/profile16.awk
@@ -0,0 +1,16 @@
+BEGIN {
+ foo::foo_bar()
+ foofoo::xxx()
+}
+
+@namespace "foo"
+
+function foo_bar()
+{
+ print "foo::foo_bar"
+}
+
+function foofoo::xxx()
+{
+ print "foofoo::xxx"
+}