Tests in base can't utilise pragmata, specifically no warnings 'deprecated';
t/op/lc_user.t See if user-defined lc et alia work
t/op/length.t See if length works
t/op/lex_assign.t See if ops involving lexicals or pad temps work
+t/op/lex.t Tests too complex for t/base/lex.t
t/op/lfs.t See if large files work for perlio
t/op/list.t See if array lists work
t/op/localref.t See if local ${deref} works
print q<ok 17
>;
-print <<; # Yow!
-ok 18
-
-# previous line intentionally left blank.
+print "ok 18 - was the test for the deprecated use of bare << to mean <<\"\"\n";
+#print <<; # Yow!
+#ok 18
+#
+## previous line intentionally left blank.
print <<E1 eq "foo\n\n" ? "ok 19\n" : "not ok 19\n";
@{[ <<E2 ]}
--- /dev/null
+#!perl -w
+use strict;
+
+require './test.pl';
+
+plan(tests => 2);
+
+{
+ no warnings 'deprecated';
+ print <<; # Yow!
+ok 1
+
+ # previous line intentionally left blank.
+
+ my $yow = "ok 2";
+ print <<; # Yow!
+$yow
+
+ # previous line intentionally left blank.
+}
+
+curr_test(3);