xref: /openbsd-src/gnu/usr.bin/perl/t/lib/feature/nonesuch (revision 850e275390052b330d93020bf619a739a3c277ac)
1Test that non-existent features fail as expected.
2
3__END__
4use feature "nonesuch";
5EXPECT
6OPTIONS regex
7^Feature "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
8########
9no feature "nonesuch";
10EXPECT
11OPTIONS regex
12^Feature "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
13########
14use feature ":nonesuch";
15EXPECT
16OPTIONS regex
17^Feature bundle "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
18########
19no feature ":nonesuch";
20EXPECT
21OPTIONS regex
22^Feature bundle "nonesuch" is not supported by Perl [v0-9.]+ at - line 1
23