]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/toplevel_ref_arg_non_rustfix.stderr
Auto merge of #87686 - matthiaskrgr:clippy_august_21_perf, r=jackh726
[rust.git] / src / tools / clippy / tests / ui / toplevel_ref_arg_non_rustfix.stderr
1 error: `ref` directly on a function argument is ignored. Consider using a reference type instead
2   --> $DIR/toplevel_ref_arg_non_rustfix.rs:9:15
3    |
4 LL | fn the_answer(ref mut x: u8) {
5    |               ^^^^^^^^^
6    |
7    = note: `-D clippy::toplevel-ref-arg` implied by `-D warnings`
8
9 error: `ref` directly on a function argument is ignored. Consider using a reference type instead
10   --> $DIR/toplevel_ref_arg_non_rustfix.rs:15:24
11    |
12 LL |         fn fun_example(ref _x: usize) {}
13    |                        ^^^^^^
14 ...
15 LL |         gen_function!();
16    |         ---------------- in this macro invocation
17    |
18    = note: this error originates in the macro `gen_function` (in Nightly builds, run with -Z macro-backtrace for more info)
19
20 error: aborting due to 2 previous errors
21