1package MyPackage; 2 3use strict; 4 5# Checking encoding warning is generated even on first line of POD 6 7sub main { 8 print "This file contains no POD\n"; 9} 10 111; 12 13=head1 TŨTORIAL 14 15The encoding warning should only fire when the parser is 'in_pod' but that 16should also be true on the first line of POD (above). 17 18