]> git.lizzy.rs Git - rust.git/blob - tests/ui/impl-trait/equality.stderr
Rollup merge of #106097 - mejrs:mir_build2, r=oli-obk
[rust.git] / tests / ui / impl-trait / equality.stderr
1 warning: the feature `specialization` is incomplete and may not be safe to use and/or cause compiler crashes
2   --> $DIR/equality.rs:1:12
3    |
4 LL | #![feature(specialization)]
5    |            ^^^^^^^^^^^^^^
6    |
7    = note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information
8    = help: consider using `min_specialization` instead, which is more stable and complete
9    = note: `#[warn(incomplete_features)]` on by default
10
11 error[E0308]: mismatched types
12   --> $DIR/equality.rs:15:5
13    |
14 LL | fn two(x: bool) -> impl Foo {
15    |                    -------- expected `i32` because of return type
16 ...
17 LL |     0_u32
18    |     ^^^^^ expected `i32`, found `u32`
19    |
20 help: change the type of the numeric literal from `u32` to `i32`
21    |
22 LL |     0_i32
23    |       ~~~
24
25 error[E0277]: cannot add `impl Foo` to `u32`
26   --> $DIR/equality.rs:24:11
27    |
28 LL |         n + sum_to(n - 1)
29    |           ^ no implementation for `u32 + impl Foo`
30    |
31    = help: the trait `Add<impl Foo>` is not implemented for `u32`
32    = help: the following other types implement trait `Add<Rhs>`:
33              <&'a u32 as Add<u32>>
34              <&u32 as Add<&u32>>
35              <u32 as Add<&u32>>
36              <u32 as Add>
37
38 error: aborting due to 2 previous errors; 1 warning emitted
39
40 Some errors have detailed explanations: E0277, E0308.
41 For more information about an error, try `rustc --explain E0277`.