2020-01-29 23:18:54 +00:00
|
|
|
error[E0642]: patterns aren't allowed in functions without bodies
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/no-patterns-in-args-2.rs:6:11
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn f2(&arg: u8);
|
2020-01-29 23:18:54 +00:00
|
|
|
| ^^^^ pattern not allowed in function without body
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2020-01-29 23:18:54 +00:00
|
|
|
error: patterns aren't allowed in functions without bodies
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/no-patterns-in-args-2.rs:4:11
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | fn f1(mut arg: u8);
|
2020-11-30 14:25:07 +00:00
|
|
|
| ^^^^^^^ help: remove `mut` from the parameter: `arg`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2022-09-18 15:55:36 +00:00
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #35203 <https://github.com/rust-lang/rust/issues/35203>
|
2020-01-22 23:57:38 +00:00
|
|
|
note: the lint level is defined here
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/no-patterns-in-args-2.rs:1:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | #![deny(patterns_in_fns_without_body)]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0642`.
|