Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/librustc_passes/error_codes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ be taken. Erroneous code example:
```compile_fail,E0268
fn some_func() {
break; // error: `break` outside of loop
break; // error: `break` outside of a loop
}
```
Expand Down
37 changes: 18 additions & 19 deletions src/librustc_passes/loops.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ use errors::Applicability;
enum Context {
Normal,
Loop(hir::LoopSource),
Closure,
AsyncClosure,
Closure(Span),
AsyncClosure(Span),
LabeledBlock,
AnonConst,
}
Expand Down Expand Up @@ -58,11 +58,11 @@ impl<'a, 'hir> Visitor<'hir> for CheckLoopVisitor<'a, 'hir> {
hir::ExprKind::Loop(ref b, _, source) => {
self.with_context(Loop(source), |v| v.visit_block(&b));
}
hir::ExprKind::Closure(_, ref function_decl, b, _, movability) => {
hir::ExprKind::Closure(_, ref function_decl, b, span, movability) => {
let cx = if let Some(GeneratorMovability::Static) = movability {
AsyncClosure
AsyncClosure(span)
} else {
Closure
Closure(span)
};
self.visit_fn_decl(&function_decl);
self.with_context(cx, |v| v.visit_nested_body(b));
Expand Down Expand Up @@ -170,23 +170,22 @@ impl<'a, 'hir> CheckLoopVisitor<'a, 'hir> {
}

fn require_break_cx(&self, name: &str, span: Span) {
match self.cx {
LabeledBlock | Loop(_) => {}
Closure => {
struct_span_err!(self.sess, span, E0267, "`{}` inside of a closure", name)
.span_label(span, "cannot break inside of a closure")
let err_inside_of = |article, r#type, closure_span| {
struct_span_err!(self.sess, span, E0267, "`{}` inside of {} {}", name, article, r#type)
.span_label(span, format!("cannot `{}` inside of {} {}", name, article, r#type))
.span_label(closure_span, &format!("enclosing {}", r#type))
.emit();
}
AsyncClosure => {
struct_span_err!(self.sess, span, E0267, "`{}` inside of an async block", name)
.span_label(span, "cannot break inside of an async block")
.emit();
}
};

match self.cx {
LabeledBlock | Loop(_) => {},
Closure(closure_span) => err_inside_of("a", "closure", closure_span),
AsyncClosure(closure_span) => err_inside_of("an", "`async` block", closure_span),
Normal | AnonConst => {
struct_span_err!(self.sess, span, E0268, "`{}` outside of loop", name)
.span_label(span, "cannot break outside of a loop")
struct_span_err!(self.sess, span, E0268, "`{}` outside of a loop", name)
.span_label(span, format!("cannot `{}` outside of a loop", name))
.emit();
}
},
}
}

Expand Down
8 changes: 4 additions & 4 deletions src/test/ui/array-break-length.stderr
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/array-break-length.rs:3:17
|
LL | |_: [_; break]| {}
| ^^^^^ cannot break outside of a loop
| ^^^^^ cannot `break` outside of a loop

error[E0268]: `continue` outside of loop
error[E0268]: `continue` outside of a loop
--> $DIR/array-break-length.rs:8:17
|
LL | |_: [_; continue]| {}
| ^^^^^^^^ cannot break outside of a loop
| ^^^^^^^^ cannot `continue` outside of a loop

error[E0308]: mismatched types
--> $DIR/array-break-length.rs:3:9
Expand Down
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
error[E0267]: `break` inside of an async block
--> $DIR/async-block-control-flow-static-semantics.rs:33:9
|
LL | break 0u8;
| ^^^^^^^^^ cannot break inside of an async block
LL | async {
| ___________-
LL | | break 0u8;
| | ^^^^^^^^^ cannot `break` inside of an `async` block
LL | | };
| |_____- enclosing `async` block

error[E0267]: `break` inside of an async block
--> $DIR/async-block-control-flow-static-semantics.rs:40:13
|
LL | break 0u8;
| ^^^^^^^^^ cannot break inside of an async block
LL | async {
| _______________-
LL | | break 0u8;
| | ^^^^^^^^^ cannot `break` inside of an `async` block
LL | | };
| |_________- enclosing `async` block

error[E0308]: mismatched types
--> $DIR/async-block-control-flow-static-semantics.rs:13:43
Expand Down
21 changes: 13 additions & 8 deletions src/test/ui/break-outside-loop.stderr
Original file line number Diff line number Diff line change
@@ -1,32 +1,37 @@
error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/break-outside-loop.rs:10:15
|
LL | let pth = break;
| ^^^^^ cannot break outside of a loop
| ^^^^^ cannot `break` outside of a loop

error[E0268]: `continue` outside of loop
error[E0268]: `continue` outside of a loop
--> $DIR/break-outside-loop.rs:11:17
|
LL | if cond() { continue }
| ^^^^^^^^ cannot break outside of a loop
| ^^^^^^^^ cannot `continue` outside of a loop

error[E0267]: `break` inside of a closure
--> $DIR/break-outside-loop.rs:17:25
|
LL | foo(|| {
| -- enclosing closure
LL | if cond() { break }
| ^^^^^ cannot break inside of a closure
| ^^^^^ cannot `break` inside of a closure

error[E0267]: `continue` inside of a closure
--> $DIR/break-outside-loop.rs:18:25
|
LL | foo(|| {
| -- enclosing closure
LL | if cond() { break }
LL | if cond() { continue }
| ^^^^^^^^ cannot break inside of a closure
| ^^^^^^^^ cannot `continue` inside of a closure

error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/break-outside-loop.rs:24:25
|
LL | let unconstrained = break;
| ^^^^^ cannot break outside of a loop
| ^^^^^ cannot `break` outside of a loop

error: aborting due to 5 previous errors

Expand Down
12 changes: 6 additions & 6 deletions src/test/ui/closures/closure-array-break-length.stderr
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
error[E0268]: `continue` outside of loop
error[E0268]: `continue` outside of a loop
--> $DIR/closure-array-break-length.rs:2:13
|
LL | |_: [_; continue]| {};
| ^^^^^^^^ cannot break outside of a loop
| ^^^^^^^^ cannot `continue` outside of a loop

error[E0268]: `continue` outside of loop
error[E0268]: `continue` outside of a loop
--> $DIR/closure-array-break-length.rs:4:19
|
LL | while |_: [_; continue]| {} {}
| ^^^^^^^^ cannot break outside of a loop
| ^^^^^^^^ cannot `continue` outside of a loop

error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/closure-array-break-length.rs:7:19
|
LL | while |_: [_; break]| {} {}
| ^^^^^ cannot break outside of a loop
| ^^^^^ cannot `break` outside of a loop

error[E0308]: mismatched types
--> $DIR/closure-array-break-length.rs:4:11
Expand Down
4 changes: 3 additions & 1 deletion src/test/ui/error-codes/E0267.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ error[E0267]: `break` inside of a closure
--> $DIR/E0267.rs:2:18
|
LL | let w = || { break; };
| ^^^^^ cannot break inside of a closure
| -- ^^^^^ cannot `break` inside of a closure
| |
| enclosing closure

error: aborting due to previous error

Expand Down
4 changes: 2 additions & 2 deletions src/test/ui/error-codes/E0268.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/E0268.rs:2:5
|
LL | break;
| ^^^^^ cannot break outside of a loop
| ^^^^^ cannot `break` outside of a loop

error: aborting due to previous error

Expand Down
8 changes: 4 additions & 4 deletions src/test/ui/issues/issue-28105.stderr
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
error[E0268]: `continue` outside of loop
error[E0268]: `continue` outside of a loop
--> $DIR/issue-28105.rs:4:5
|
LL | continue
| ^^^^^^^^ cannot break outside of a loop
| ^^^^^^^^ cannot `continue` outside of a loop

error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/issue-28105.rs:6:5
|
LL | break
| ^^^^^ cannot break outside of a loop
| ^^^^^ cannot `break` outside of a loop

error: aborting due to 2 previous errors

Expand Down
8 changes: 4 additions & 4 deletions src/test/ui/issues/issue-43162.stderr
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/issue-43162.rs:3:5
|
LL | break true;
| ^^^^^^^^^^ cannot break outside of a loop
| ^^^^^^^^^^ cannot `break` outside of a loop

error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/issue-43162.rs:7:5
|
LL | break {};
| ^^^^^^^^ cannot break outside of a loop
| ^^^^^^^^ cannot `break` outside of a loop

error[E0308]: mismatched types
--> $DIR/issue-43162.rs:1:13
Expand Down
8 changes: 4 additions & 4 deletions src/test/ui/issues/issue-50576.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@ error[E0426]: use of undeclared label `'L`
LL | |bool: [u8; break 'L]| 0;
| ^^ undeclared label `'L`

error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/issue-50576.rs:2:17
|
LL | |bool: [u8; break 'L]| 0;
| ^^^^^^^^ cannot break outside of a loop
| ^^^^^^^^ cannot `break` outside of a loop

error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/issue-50576.rs:5:16
|
LL | Vec::<[u8; break]>::new();
| ^^^^^ cannot break outside of a loop
| ^^^^^ cannot `break` outside of a loop

error: aborting due to 3 previous errors

Expand Down
4 changes: 2 additions & 2 deletions src/test/ui/issues/issue-50581.stderr
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
error[E0268]: `break` outside of loop
error[E0268]: `break` outside of a loop
--> $DIR/issue-50581.rs:2:14
|
LL | |_: [u8; break]| ();
| ^^^^^ cannot break outside of a loop
| ^^^^^ cannot `break` outside of a loop

error: aborting due to previous error

Expand Down