xref: /openbsd-src/gnu/usr.bin/perl/cpan/Pod-Simple/t/corpus/encwarn04.txt (revision 91f110e064cd7c194e59e019b83bb7496c1c84d4)
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