Skip to content

Commit

Permalink
Removed unused feature from test
Browse files Browse the repository at this point in the history
  • Loading branch information
SarthakSingh31 committed Jul 30, 2024
1 parent d5b4bb1 commit f490a0e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions tests/ui/lowering/cont-in-block/cont-in-fn-issue-113379.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
// Fixes: #113379

#![allow(incomplete_features)]
#![feature(adt_const_params)]

trait Trait<const S: usize> {}

struct Bug<T>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error[E0696]: `continue` pointing to a labeled block
--> $DIR/cont-in-fn-issue-113379.rs:14:17
--> $DIR/cont-in-fn-issue-113379.rs:11:17
|
LL | / 'b: {
LL | |
Expand All @@ -9,7 +9,7 @@ LL | | }
| |_____________- labeled block the `continue` points to

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

error[E0308]: mismatched types
--> $DIR/cont-in-fn-issue-113379.rs:12:13
--> $DIR/cont-in-fn-issue-113379.rs:9:13
|
LL | / 'b: {
LL | |
Expand Down

0 comments on commit f490a0e

Please sign in to comment.