]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/equality.stderr
Auto merge of #95604 - nbdd0121:used2, r=petrochenkov
[rust.git] / src / test / 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: `#[warn(incomplete_features)]` on by default
8    = note: see issue #31844 <https://github.com/rust-lang/rust/issues/31844> for more information
9    = help: consider using `min_specialization` instead, which is more stable and complete
10
11 error[E0308]: mismatched types
12   --> $DIR/equality.rs:15:5
13    |
14 LL | fn two(x: bool) -> impl Foo {
15    |                    -------- expected `_` because of return type
16 ...
17 LL |     0_u32
18    |     ^^^^^ expected `i32`, found `u32`
19
20 error[E0277]: cannot add `impl Foo` to `u32`
21   --> $DIR/equality.rs:24:11
22    |
23 LL |         n + sum_to(n - 1)
24    |           ^ no implementation for `u32 + impl Foo`
25    |
26    = help: the trait `Add<impl Foo>` is not implemented for `u32`
27    = help: the following other types implement trait `Add<Rhs>`:
28              <&'a f32 as Add<f32>>
29              <&'a f64 as Add<f64>>
30              <&'a i128 as Add<i128>>
31              <&'a i16 as Add<i16>>
32              <&'a i32 as Add<i32>>
33              <&'a i64 as Add<i64>>
34              <&'a i8 as Add<i8>>
35              <&'a isize as Add<isize>>
36            and 48 others
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`.