]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-28344.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-28344.stderr
1 error[E0191]: the value of the associated type `Output` (from the trait `std::ops::BitXor`) must be specified
2   --> $DIR/issue-28344.rs:14:17
3    |
4 LL |     let x: u8 = BitXor::bitor(0 as u8, 0 as u8);
5    |                 ^^^^^^^^^^^^^ missing associated type `Output` value
6
7 error[E0599]: no function or associated item named `bitor` found for type `dyn std::ops::BitXor<_>` in the current scope
8   --> $DIR/issue-28344.rs:14:17
9    |
10 LL |     let x: u8 = BitXor::bitor(0 as u8, 0 as u8);
11    |                 ^^^^^^^^^^^^^ function or associated item not found in `dyn std::ops::BitXor<_>`
12    |
13    = help: did you mean `bitxor`?
14
15 error[E0191]: the value of the associated type `Output` (from the trait `std::ops::BitXor`) must be specified
16   --> $DIR/issue-28344.rs:18:13
17    |
18 LL |     let g = BitXor::bitor;
19    |             ^^^^^^^^^^^^^ missing associated type `Output` value
20
21 error[E0599]: no function or associated item named `bitor` found for type `dyn std::ops::BitXor<_>` in the current scope
22   --> $DIR/issue-28344.rs:18:13
23    |
24 LL |     let g = BitXor::bitor;
25    |             ^^^^^^^^^^^^^ function or associated item not found in `dyn std::ops::BitXor<_>`
26    |
27    = help: did you mean `bitxor`?
28
29 error: aborting due to 4 previous errors
30
31 Some errors occurred: E0191, E0599.
32 For more information about an error, try `rustc --explain E0191`.