perl 1.0 patch 14: a2p incorrectly translates 'for (a in b)' construct.
[p5sagit/p5-mst-13.2.git] / t / base.lex
CommitLineData
8d063cd8 1#!./perl
2
a559c259 3# $Header: base.lex,v 1.0.1.1 88/01/28 10:37:00 root Exp $
8d063cd8 4
a559c259 5print "1..6\n";
8d063cd8 6
7$ # this is the register <space>
8= 'x';
9
10print "#1 :$ : eq :x:\n";
11if ($ eq 'x') {print "ok 1\n";} else {print "not ok 1\n";}
12
13$x = $#; # this is the register $#
14
15if ($x eq '') {print "ok 2\n";} else {print "not ok 2\n";}
16
17$x = $#x;
18
19if ($x eq '-1') {print "ok 3\n";} else {print "not ok 3\n";}
20
21$x = '\\'; # ';
22
23if (length($x) == 1) {print "ok 4\n";} else {print "not ok 4\n";}
a559c259 24
25eval 'while (0) {
26 print "foo\n";
27}
28/^/ && (print "ok 5\n");
29';
30
31eval '$foo{1} / 1;';
32if (!$@) {print "ok 6\n";} else {print "not ok 6\n";}