]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-21221-1.stderr
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[rust.git] / tests / ui / resolve / issue-21221-1.stderr
1 error[E0405]: cannot find trait `Mul` in this scope
2   --> $DIR/issue-21221-1.rs:43:6
3    |
4 LL | impl Mul for Foo {
5    |      ^^^ not found in this scope
6    |
7 help: consider importing one of these items
8    |
9 LL | use mul1::Mul;
10    |
11 LL | use mul2::Mul;
12    |
13 LL | use std::ops::Mul;
14    |
15
16 error[E0412]: cannot find type `Mul` in this scope
17   --> $DIR/issue-21221-1.rs:58:16
18    |
19 LL | fn getMul() -> Mul {
20    |                ^^^ not found in this scope
21    |
22 help: consider importing one of these items
23    |
24 LL | use mul1::Mul;
25    |
26 LL | use mul2::Mul;
27    |
28 LL | use std::ops::Mul;
29    |
30
31 error[E0405]: cannot find trait `ThisTraitReallyDoesntExistInAnyModuleReally` in this scope
32   --> $DIR/issue-21221-1.rs:63:6
33    |
34 LL | impl ThisTraitReallyDoesntExistInAnyModuleReally for Foo {
35    |      ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope
36
37 error[E0405]: cannot find trait `Div` in this scope
38   --> $DIR/issue-21221-1.rs:68:6
39    |
40 LL | impl Div for Foo {
41    |      ^^^ not found in this scope
42    |
43 help: consider importing this trait
44    |
45 LL | use std::ops::Div;
46    |
47
48 error: aborting due to 4 previous errors
49
50 Some errors have detailed explanations: E0405, E0412.
51 For more information about an error, try `rustc --explain E0405`.