summaryrefslogtreecommitdiff
path: root/t/lib/warnings/perly
blob: 02e29fde2e6a99ea28ece34a93fc59e5a7b7eca4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
  perly.y	AOK

  dep() => deprecate("\"do\" to call subroutines") 
  Use of "do" to call subroutines is deprecated

	sub fred {} do fred()
	sub fred {} do fred(1)
	sub fred {} $a = "fred" ; do $a()
	sub fred {} $a = "fred" ; do $a(1)

  Use of qw(...) as parentheses is deprecated

	if qw(a) {}
	unless qw(a) {}
	if (0) {} elsif qw(a) {}
	given qw(a) {}
	when qw(a) {}
	while qw(a) {}
	until qw(a) {}
	foreach $x qw(a b c) {}
	foreach my $x qw(a b c) {}
	$obj->meth qw(a b c)
	do foo qw(a b c)
	do $subref qw(a b c)
	&foo qw(a b c)
	$a[0] qw(a b c)

__END__
# perly.y
use warnings 'deprecated' ;
sub fred {} 
do fred() ;
do fred(1) ;
$a = "fred" ; 
do $a() ;
do $a(1) ;
no warnings 'deprecated' ;
do fred() ;
do fred(1) ;
$a = "fred" ; 
do $a() ;
do $a(1) ;
EXPECT
Use of "do" to call subroutines is deprecated at - line 4.
Use of "do" to call subroutines is deprecated at - line 5.
Use of "do" to call subroutines is deprecated at - line 7.
Use of "do" to call subroutines is deprecated at - line 8.
########
use warnings qw(deprecated void);
if qw(a) { print "x0\n"; } else { }
if qw(0) { print "x1\n"; } else { }
if qw(z a) { print "x2\n"; } else { }
if qw(z 0) { print "x3\n"; } else { }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Use of qw(...) as parentheses is deprecated at - line 4.
Useless use of a constant (z) in void context at - line 4.
Use of qw(...) as parentheses is deprecated at - line 5.
Useless use of a constant (z) in void context at - line 5.
x0
x2
########
if qw() { print "x0\n"; } else { }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
syntax error at - line 1, near "if qw()"
Execution of - aborted due to compilation errors.
########
use warnings qw(deprecated void);
unless qw(a) { print "x0\n"; } else { }
unless qw(0) { print "x1\n"; } else { }
unless qw(z a) { print "x2\n"; } else { }
unless qw(z 0) { print "x3\n"; } else { }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Use of qw(...) as parentheses is deprecated at - line 4.
Useless use of a constant (z) in void context at - line 4.
Use of qw(...) as parentheses is deprecated at - line 5.
Useless use of a constant (z) in void context at - line 5.
x1
x3
########
unless qw() { print "x0\n"; } else { }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
syntax error at - line 1, near "unless qw()"
Execution of - aborted due to compilation errors.
########
use warnings qw(deprecated void);
if(0) { print "eek\n"; } elsif qw(a) { print "x0\n"; } else { }
if(0) { print "eek\n"; } elsif qw(0) { print "x1\n"; } else { }
if(0) { print "eek\n"; } elsif qw(z a) { print "x2\n"; } else { }
if(0) { print "eek\n"; } elsif qw(z 0) { print "x3\n"; } else { }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Use of qw(...) as parentheses is deprecated at - line 4.
Useless use of a constant (z) in void context at - line 4.
Use of qw(...) as parentheses is deprecated at - line 5.
Useless use of a constant (z) in void context at - line 5.
x0
x2
########
if(0) { print "eek\n"; } elsif qw() { print "x0\n"; } else { }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
syntax error at - line 1, near "elsif qw()"
Execution of - aborted due to compilation errors.
########
use warnings qw(deprecated void); use feature "switch";
given qw(a) { print "x0 $_\n"; }
given qw(z a) { print "x1 $_\n"; }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Useless use of a constant (z) in void context at - line 3.
x0 a
x1 a
########
use feature "switch";
given qw() { print "x0\n"; }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
syntax error at - line 2, near "given qw()"
Execution of - aborted due to compilation errors.
########
use warnings qw(deprecated void); use feature "switch";
given("a") { when qw(a) { print "x0\n"; } }
given("a") { when qw(b) { print "x1\n"; } }
given("a") { when qw(z a) { print "x2\n"; } }
given("a") { when qw(z b) { print "x3\n"; } }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Use of qw(...) as parentheses is deprecated at - line 4.
Useless use of a constant (z) in void context at - line 4.
Use of qw(...) as parentheses is deprecated at - line 5.
Useless use of a constant (z) in void context at - line 5.
x0
x2
########
use feature "switch";
given("a") { when qw() { print "x0\n"; } }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
syntax error at - line 2, near "when qw()"
syntax error at - line 2, near "} }"
Execution of - aborted due to compilation errors.
########
use warnings qw(deprecated void);
while qw(a) { print "x0\n"; last; } {;}
while qw(0) { print "x1\n"; last; } {;}
while qw(z a) { print "x2\n"; last; } {;}
while qw(z 0) { print "x3\n"; last; } {;}
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Use of qw(...) as parentheses is deprecated at - line 4.
Useless use of a constant (z) in void context at - line 4.
Use of qw(...) as parentheses is deprecated at - line 5.
Useless use of a constant (z) in void context at - line 5.
x0
x2
########
while qw() { print "x0\n"; last; }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
x0
########
use warnings qw(deprecated void);
until qw(a) { print "x0\n"; last; } {;}
until qw(0) { print "x1\n"; last; } {;}
until qw(z a) { print "x2\n"; last; } {;}
until qw(z 0) { print "x3\n"; last; } {;}
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Use of qw(...) as parentheses is deprecated at - line 4.
Useless use of a constant (z) in void context at - line 4.
Use of qw(...) as parentheses is deprecated at - line 5.
Useless use of a constant (z) in void context at - line 5.
x1
x3
########
until qw() { print "x0\n"; } else { }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
syntax error at - line 1, near "until qw()"
Execution of - aborted due to compilation errors.
########
foreach $x qw(a b c) { print $x, "\n"; }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
a
b
c
########
foreach $x qw() { print $x, "\n"; }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
syntax error at - line 1, near "$x qw()"
Execution of - aborted due to compilation errors.
########
foreach my $x qw(a b c) { print $x, "\n"; }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
a
b
c
########
foreach my $x qw() { print $x, "\n"; }
EXPECT
Use of qw(...) as parentheses is deprecated at - line 1.
syntax error at - line 1, near "$x qw()"
Execution of - aborted due to compilation errors.
########
sub a5c85eef3bf30129e20989e96b099d13::foo { print "+", join(":", @_), "\n"; }
"a5c85eef3bf30129e20989e96b099d13"->foo qw(); {;}
"a5c85eef3bf30129e20989e96b099d13"->foo qw(a b c); {;}
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
+a5c85eef3bf30129e20989e96b099d13
+a5c85eef3bf30129e20989e96b099d13:a:b:c
########
sub fd4de2af1449cec72693c36842d41862 { print "+", join(":", @_), "\n"; }
do fd4de2af1449cec72693c36842d41862 qw(); {;}
do fd4de2af1449cec72693c36842d41862 qw(a b c); {;}
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of "do" to call subroutines is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Use of "do" to call subroutines is deprecated at - line 3.
+
+a:b:c
########
$subref = sub { print "+", join(":", @_), "\n"; };
do $subref qw();
do $subref qw(a b c);
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of "do" to call subroutines is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
Use of "do" to call subroutines is deprecated at - line 3.
+
+a:b:c
########
sub e293a8f7cb38880a48867fcb336448e5 { print "+", join(":", @_), "\n"; }
&e293a8f7cb38880a48867fcb336448e5 qw();
&e293a8f7cb38880a48867fcb336448e5 qw(a b c);
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
+
+a:b:c
########
my @a = (sub { print "+", join(":", @_), "\n"; });
$a[0] qw();
$a[0] qw(a b c);
EXPECT
Use of qw(...) as parentheses is deprecated at - line 2.
Use of qw(...) as parentheses is deprecated at - line 3.
+
+a:b:c