]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui-internal/unnecessary_def_path_hardcoded_path.stderr
Auto merge of #103390 - compiler-errors:metadata-mod-regions, r=eholk
[rust.git] / src / tools / clippy / tests / ui-internal / unnecessary_def_path_hardcoded_path.stderr
1 error: hardcoded path to a diagnostic item
2   --> $DIR/unnecessary_def_path_hardcoded_path.rs:10:36
3    |
4 LL |     const DEREF_TRAIT: [&str; 4] = ["core", "ops", "deref", "Deref"];
5    |                                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6    |
7    = help: convert all references to use `sym::Deref`
8    = note: `-D clippy::unnecessary-def-path` implied by `-D warnings`
9
10 error: hardcoded path to a diagnostic item
11   --> $DIR/unnecessary_def_path_hardcoded_path.rs:12:43
12    |
13 LL |     const DEREF_TRAIT_METHOD: [&str; 5] = ["core", "ops", "deref", "Deref", "deref"];
14    |                                           ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15    |
16    = help: convert all references to use `sym::deref_method`
17
18 error: hardcoded path to a language item
19   --> $DIR/unnecessary_def_path_hardcoded_path.rs:11:40
20    |
21 LL |     const DEREF_MUT_TRAIT: [&str; 4] = ["core", "ops", "deref", "DerefMut"];
22    |                                        ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23    |
24    = help: convert all references to use `LangItem::DerefMut`
25
26 error: aborting due to 3 previous errors
27