mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 08:38:23 +00:00
11 lines
227 B
Plaintext
11 lines
227 B
Plaintext
Test that removed features can be disabled, but not enabled.
|
|
|
|
__END__
|
|
use feature "array_base";
|
|
EXPECT
|
|
OPTIONS regex
|
|
^Feature "array_base" is not supported by Perl [v0-9.]+ at - line 1.
|
|
########
|
|
no feature "array_base";
|
|
EXPECT
|