2018-06-22 15:35:52 -07:00
|
|
|
error[E0572]: return statement outside of function body
|
|
|
|
--> $DIR/issue-51714.rs:12:14
|
|
|
|
|
|
|
|
|
LL | |_: [_; return || {}] | {}
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0572]: return statement outside of function body
|
|
|
|
--> $DIR/issue-51714.rs:17:10
|
|
|
|
|
|
|
|
|
LL | [(); return || {}];
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
2018-07-01 17:23:48 +01:00
|
|
|
error[E0572]: return statement outside of function body
|
|
|
|
--> $DIR/issue-51714.rs:22:10
|
|
|
|
|
|
|
|
|
LL | [(); return |ice| {}];
|
|
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2018-06-22 15:35:52 -07:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0572`.
|