summaryrefslogtreecommitdiff
path: root/test/typeof1.awk
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2016-08-03 21:23:22 +0300
committerArnold D. Robbins <arnold@skeeve.com>2016-08-03 21:23:22 +0300
commit9907a598dca8f129422c42f8c4fa3b4e2c988221 (patch)
tree3a2be1d8cc0c5747129c6d9e4f75d1ee250fe988 /test/typeof1.awk
parent58cd470fe6b37ff2b62f5bc5b8cedf19be04fc63 (diff)
downloadgawk-9907a598dca8f129422c42f8c4fa3b4e2c988221.tar.gz
Remove typed regexps until they can be done correctly.
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/)
}