Skip to content

Commit f490a0e

Browse files
Removed unused feature from test
1 parent d5b4bb1 commit f490a0e

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

Diff for: tests/ui/lowering/cont-in-block/cont-in-fn-issue-113379.rs

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
// Fixes: #113379
22

3-
#![allow(incomplete_features)]
4-
#![feature(adt_const_params)]
5-
63
trait Trait<const S: usize> {}
74

85
struct Bug<T>

Diff for: tests/ui/lowering/cont-in-block/cont-in-fn-issue-113379.stderr

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
error[E0696]: `continue` pointing to a labeled block
2-
--> $DIR/cont-in-fn-issue-113379.rs:14:17
2+
--> $DIR/cont-in-fn-issue-113379.rs:11:17
33
|
44
LL | / 'b: {
55
LL | |
@@ -9,7 +9,7 @@ LL | | }
99
| |_____________- labeled block the `continue` points to
1010

1111
error[E0696]: `continue` pointing to a labeled block
12-
--> $DIR/cont-in-fn-issue-113379.rs:24:9
12+
--> $DIR/cont-in-fn-issue-113379.rs:21:9
1313
|
1414
LL | / 'b: {
1515
LL | | continue 'b;
@@ -19,7 +19,7 @@ LL | | }
1919
| |_____- labeled block the `continue` points to
2020

2121
error[E0308]: mismatched types
22-
--> $DIR/cont-in-fn-issue-113379.rs:12:13
22+
--> $DIR/cont-in-fn-issue-113379.rs:9:13
2323
|
2424
LL | / 'b: {
2525
LL | |

0 commit comments

Comments
 (0)