aboutsummaryrefslogtreecommitdiffstats
path: root/test/typeof1.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-08-03 21:32:17 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-08-03 21:32:17 +0300
commit5b0b9518e94d4aee27e9b0b0617c2bdd0081592c (patch)
tree7fd96cba6b334e219bfad3a489fb41ff68cd82ee /test/typeof1.awk
parent14587bf02200b8f184f19f52bbff83973d9d9197 (diff)
parent9907a598dca8f129422c42f8c4fa3b4e2c988221 (diff)
downloadegawk-5b0b9518e94d4aee27e9b0b0617c2bdd0081592c.tar.gz
egawk-5b0b9518e94d4aee27e9b0b0617c2bdd0081592c.tar.bz2
egawk-5b0b9518e94d4aee27e9b0b0617c2bdd0081592c.zip
Merge branch 'master' into feature/nocopy
Diffstat (limited to 'test/typeof1.awk')
-rw-r--r--test/typeof1.awk6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/typeof1.awk b/test/typeof1.awk
index c301030e..9db64484 100644
--- a/test/typeof1.awk
+++ b/test/typeof1.awk
@@ -1,9 +1,9 @@
BEGIN {
a = 5 ; print typeof(a)
print typeof(b)
- print typeof(@/foo/)
+# print typeof(@/foo/)
c = "foo" ; print typeof(c)
d[1] = 1 ; print typeof(d), typeof(d[1])
- e = @/foo/ ; print typeof(e)
- print typeof(@/bar/)
+# e = @/foo/ ; print typeof(e)
+# print typeof(@/bar/)
}