[patch] blead@25282
[p5sagit/p5-mst-13.2.git] / t / lib / warnings / pp_ctl
CommitLineData
599cee73 1 pp_ctl.c AOK
2
3 Not enough format arguments
4 format STDOUT =
5 @<<< @<<<
6 $a
7 .
8 write;
9
10
11 Exiting substitution via %s
12 $_ = "abc" ;
13 while ($i ++ == 0)
14 {
15 s/ab/last/e ;
16 }
17
18 Exiting subroutine via %s
19 sub fred { last }
20 { fred() }
21
22 Exiting eval via %s
23 { eval "last" }
24
25 Exiting pseudo-block via %s
26 @a = (1,2) ; @b = sort { last } @a ;
27
28 Exiting substitution via %s
29 $_ = "abc" ;
30 last fred:
31 while ($i ++ == 0)
32 {
33 s/ab/last fred/e ;
34 }
35
36
37 Exiting subroutine via %s
38 sub fred { last joe }
39 joe: { fred() }
40
41 Exiting eval via %s
42 fred: { eval "last fred" }
43
44 Exiting pseudo-block via %s
45 @a = (1,2) ; fred: @b = sort { last fred } @a ;
46
47
48 Deep recursion on subroutine \"%s\"
49 sub fred
50 {
cd06dffe 51 fred() if $a++ < 200
599cee73 52 }
53
cd06dffe 54 fred()
599cee73 55
a99e4ac2 56 (in cleanup) foo bar
57 package Foo;
58 DESTROY { die "foo bar" }
59 { bless [], 'Foo' for 1..10 }
599cee73 60
61__END__
62# pp_ctl.c
4438c4b7 63use warnings 'syntax' ;
599cee73 64format STDOUT =
65@<<< @<<<
661
67.
68write;
69EXPECT
70Not enough format arguments at - line 5.
711
72########
73# pp_ctl.c
4438c4b7 74no warnings 'syntax' ;
0453d815 75format =
76@<<< @<<<
771
78.
79write ;
80EXPECT
811
82########
83# pp_ctl.c
e476b1b5 84use warnings 'exiting' ;
599cee73 85$_ = "abc" ;
86
87while ($i ++ == 0)
88{
89 s/ab/last/e ;
90}
e476b1b5 91no warnings 'exiting' ;
0453d815 92while ($i ++ == 0)
93{
94 s/ab/last/e ;
95}
599cee73 96EXPECT
97Exiting substitution via last at - line 7.
98########
99# pp_ctl.c
e476b1b5 100use warnings 'exiting' ;
599cee73 101sub fred { last }
102{ fred() }
e476b1b5 103no warnings 'exiting' ;
0453d815 104sub joe { last }
105{ joe() }
599cee73 106EXPECT
107Exiting subroutine via last at - line 3.
108########
109# pp_ctl.c
0453d815 110{
e476b1b5 111 eval "use warnings 'exiting' ; last;"
0453d815 112}
113print STDERR $@ ;
114{
e476b1b5 115 eval "no warnings 'exiting' ;last;"
0453d815 116}
599cee73 117print STDERR $@ ;
118EXPECT
119Exiting eval via last at (eval 1) line 1.
120########
121# pp_ctl.c
e476b1b5 122use warnings 'exiting' ;
599cee73 123@a = (1,2) ;
124@b = sort { last } @a ;
e476b1b5 125no warnings 'exiting' ;
0453d815 126@b = sort { last } @a ;
599cee73 127EXPECT
128Exiting pseudo-block via last at - line 4.
a651a37d 129Can't "last" outside a loop block at - line 4.
599cee73 130########
131# pp_ctl.c
e476b1b5 132use warnings 'exiting' ;
599cee73 133$_ = "abc" ;
134fred:
135while ($i ++ == 0)
136{
137 s/ab/last fred/e ;
138}
e476b1b5 139no warnings 'exiting' ;
0453d815 140while ($i ++ == 0)
141{
142 s/ab/last fred/e ;
143}
599cee73 144EXPECT
145Exiting substitution via last at - line 7.
146########
147# pp_ctl.c
e476b1b5 148use warnings 'exiting' ;
599cee73 149sub fred { last joe }
150joe: { fred() }
e476b1b5 151no warnings 'exiting' ;
0453d815 152sub Fred { last Joe }
153Joe: { Fred() }
599cee73 154EXPECT
155Exiting subroutine via last at - line 3.
156########
157# pp_ctl.c
0453d815 158joe:
e476b1b5 159{ eval "use warnings 'exiting' ; last joe;" }
0453d815 160print STDERR $@ ;
161Joe:
e476b1b5 162{ eval "no warnings 'exiting' ; last Joe;" }
599cee73 163print STDERR $@ ;
164EXPECT
60e6418e 165Exiting eval via last at (eval 1) line 1.
599cee73 166########
167# pp_ctl.c
e476b1b5 168use warnings 'exiting' ;
599cee73 169@a = (1,2) ;
170fred: @b = sort { last fred } @a ;
e476b1b5 171no warnings 'exiting' ;
0453d815 172Fred: @b = sort { last Fred } @a ;
599cee73 173EXPECT
174Exiting pseudo-block via last at - line 4.
175Label not found for "last fred" at - line 4.
176########
177# pp_ctl.c
4438c4b7 178use warnings 'recursion' ;
599cee73 179BEGIN { warn "PREFIX\n" ;}
180sub fred
181{
cd06dffe 182 fred() if $a++ < 200
599cee73 183}
184
cd06dffe 185fred()
599cee73 186EXPECT
187Deep recursion on subroutine "main::fred" at - line 6.
a99e4ac2 188########
189# pp_ctl.c
4438c4b7 190no warnings 'recursion' ;
0453d815 191BEGIN { warn "PREFIX\n" ;}
192sub fred
193{
cd06dffe 194 fred() if $a++ < 200
0453d815 195}
196
cd06dffe 197fred()
0453d815 198EXPECT
0453d815 199########
200# pp_ctl.c
e476b1b5 201use warnings 'misc' ;
a99e4ac2 202package Foo;
203DESTROY { die "@{$_[0]} foo bar" }
204{ bless ['A'], 'Foo' for 1..10 }
b5d92ff4 205{ bless ['B'], 'Foo' for 1..10 }
a99e4ac2 206EXPECT
207 (in cleanup) A foo bar at - line 4.
b5d92ff4 208 (in cleanup) B foo bar at - line 4.
0453d815 209########
210# pp_ctl.c
e476b1b5 211no warnings 'misc' ;
0453d815 212package Foo;
213DESTROY { die "@{$_[0]} foo bar" }
214{ bless ['A'], 'Foo' for 1..10 }
215{ bless ['B'], 'Foo' for 1..10 }
216EXPECT
f0a6fc86 217########
218# pp_ctl.c
219use warnings;
220eval 'print $foo';
221EXPECT
29489e7c 222Use of uninitialized value $foo in print at (eval 1) line 1.
f0a6fc86 223########
224# pp_ctl.c
e3407aba 225use warnings 'portable';
226eval 'use 5.6.1';
227EXPECT
228v-string in use/require non-portable at (eval 1) line 2.
229########
230# pp_ctl.c
231use warnings 'portable';
232eval 'use v5.6.1';
233EXPECT
234v-string in use/require non-portable at (eval 1) line 2.
235########
236# pp_ctl.c
f0a6fc86 237use warnings;
238{
239 no warnings;
240 eval 'print $foo';
241}
242EXPECT