aboutsummaryrefslogtreecommitdiffstats
path: root/test/typeof1.awk
diff options
context:
space:
mode:
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 9db64484..c301030e 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/)
}