2018-06-22 22:35:52 +00:00
|
|
|
error[E0572]: return statement outside of function body
|
2022-11-21 12:40:27 +00:00
|
|
|
--> $DIR/issue-51714.rs:6:13
|
2018-06-22 22:35:52 +00:00
|
|
|
|
|
2021-06-10 23:20:00 +00:00
|
|
|
LL | / fn main() {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | |
|
2022-11-21 12:40:27 +00:00
|
|
|
LL | | |_: [_; return || {}]| {};
|
|
|
|
| | ^^^^^^^^^^^^ the return is part of this body...
|
2021-06-10 23:20:00 +00:00
|
|
|
... |
|
|
|
|
LL | |
|
|
|
|
LL | | }
|
|
|
|
| |_- ...not the enclosing function body
|
2018-06-22 22:35:52 +00:00
|
|
|
|
|
|
|
error[E0572]: return statement outside of function body
|
2021-06-10 23:20:00 +00:00
|
|
|
--> $DIR/issue-51714.rs:10:10
|
2018-06-22 22:35:52 +00:00
|
|
|
|
|
2021-06-10 23:20:00 +00:00
|
|
|
LL | / fn main() {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
... |
|
|
|
|
LL | | [(); return || {}];
|
|
|
|
| | ^^^^^^^^^^^^ the return is part of this body...
|
|
|
|
... |
|
|
|
|
LL | |
|
|
|
|
LL | | }
|
|
|
|
| |_- ...not the enclosing function body
|
2018-06-22 22:35:52 +00:00
|
|
|
|
2018-07-01 16:23:48 +00:00
|
|
|
error[E0572]: return statement outside of function body
|
2021-06-10 23:20:00 +00:00
|
|
|
--> $DIR/issue-51714.rs:14:10
|
2018-07-01 16:23:48 +00:00
|
|
|
|
|
2021-06-10 23:20:00 +00:00
|
|
|
LL | / fn main() {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
... |
|
|
|
|
LL | | [(); return |ice| {}];
|
|
|
|
| | ^^^^^^^^^^^^^^^ the return is part of this body...
|
|
|
|
... |
|
|
|
|
LL | |
|
|
|
|
LL | | }
|
|
|
|
| |_- ...not the enclosing function body
|
2018-07-01 16:23:48 +00:00
|
|
|
|
2018-07-01 16:40:36 +00:00
|
|
|
error[E0572]: return statement outside of function body
|
2021-06-10 23:20:00 +00:00
|
|
|
--> $DIR/issue-51714.rs:18:10
|
2018-07-01 16:40:36 +00:00
|
|
|
|
|
2021-06-10 23:20:00 +00:00
|
|
|
LL | / fn main() {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
... |
|
|
|
|
LL | | [(); return while let Some(n) = Some(0) {}];
|
|
|
|
| | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ the return is part of this body...
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | }
|
|
|
|
| |_- ...not the enclosing function body
|
2018-07-01 16:40:36 +00:00
|
|
|
|
2020-06-26 00:43:48 +00:00
|
|
|
error: aborting due to 4 previous errors
|
2018-06-22 22:35:52 +00:00
|
|
|
|
2020-06-26 00:43:48 +00:00
|
|
|
For more information about this error, try `rustc --explain E0572`.
|