2021-03-12 14:30:50 +00:00
|
|
|
error: `ref` directly on a function argument is ignored. Consider using a reference type instead
|
2020-11-05 13:29:48 +00:00
|
|
|
--> $DIR/toplevel_ref_arg_non_rustfix.rs:9:15
|
2019-09-23 09:19:24 +00:00
|
|
|
|
|
|
|
|
LL | fn the_answer(ref mut x: u8) {
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: `-D clippy::toplevel-ref-arg` implied by `-D warnings`
|
|
|
|
|
2021-03-12 14:30:50 +00:00
|
|
|
error: `ref` directly on a function argument is ignored. Consider using a reference type instead
|
2023-03-24 13:04:35 +00:00
|
|
|
--> $DIR/toplevel_ref_arg_non_rustfix.rs:20:24
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
|
LL | fn fun_example(ref _x: usize) {}
|
|
|
|
| ^^^^^^
|
|
|
|
|
|
2023-03-24 13:04:35 +00:00
|
|
|
= note: this error originates in the macro `__inline_mac_fn_main` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-11-05 13:29:48 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2019-09-23 09:19:24 +00:00
|
|
|
|