diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2020-08-17 16:17:07 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2020-08-17 16:17:07 +0300 |
commit | fe863c57ce221f35fdf1f281231619268d3f5942 (patch) | |
tree | 5df9f8f928be108d2dfd49dedab586d2f8699562 /test/profile15.ok | |
parent | 87761102eb08df817871b17f56041428e88efb12 (diff) | |
download | egawk-fe863c57ce221f35fdf1f281231619268d3f5942.tar.gz egawk-fe863c57ce221f35fdf1f281231619268d3f5942.tar.bz2 egawk-fe863c57ce221f35fdf1f281231619268d3f5942.zip |
Add profile14 and profile15 tests.
Diffstat (limited to 'test/profile15.ok')
-rw-r--r-- | test/profile15.ok | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/test/profile15.ok b/test/profile15.ok new file mode 100644 index 00000000..c6eea608 --- /dev/null +++ b/test/profile15.ok @@ -0,0 +1,27 @@ +# in namespace awk + +function nnn() +{ + return "nnn" +} + +function zzzz() +{ + return "zzz" +} + +@namespace "bbb" + + +function zzz() +{ + return "bbb::zzz" +} + +@namespace "nnn" + + +function abc() +{ + return "nnn::abc" +} |