Lines Matching refs:use
1 Check implicit loading of features with use VERSION.
5 use feature ":5.10";
11 use 5.9.5;
17 use v5.9.5;
23 use 5.009005;
36 use 5.9.5;
44 use 5.9.5;
52 use 5.9.5;
65 use 5;
67 use 5.015;
69 use 5.014;
72 Changing use VERSION while another use VERSION is in scope is deprecated, and will become fatal in …
78 use v5.10;
81 use v5.14;
84 Changing use VERSION while another use VERSION is in scope is deprecated, and will become fatal in …
91 use v5.10;
92 print eval "use utf8; q|$long_s|" eq "\x{17f}" ? "ok\n" : "nok\n";
93 use v5.15;
94 print eval "use utf8; q|$long_s|" eq $long_s ? "ok\n" : "nok\n";
96 Changing use VERSION while another use VERSION is in scope is deprecated, and will become fatal in …