]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/equality.stderr
Make suggestion more complete
[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
10 error[E0308]: mismatched types
11   --> $DIR/equality.rs:15:5
12    |
13 LL | fn two(x: bool) -> impl Foo {
14    |                    -------- expected because this return type...
15 LL |     if x {
16 LL |         return 1_i32;
17    |                ----- ...is found to be `i32` here
18 LL |     }
19 LL |     0_u32
20    |     ^^^^^ expected `i32`, found `u32`
21    |
22    = note: to return `impl Trait`, all returned values must be of the same type
23    = note: for information on `impl Trait`, see <https://doc.rust-lang.org/book/ch10-02-traits.html#returning-types-that-implement-traits>
24    = help: if the trait `Foo` were object safe, you could return a boxed trait object
25    = note: for information on trait objects, see <https://doc.rust-lang.org/book/ch17-02-trait-objects.html#using-trait-objects-that-allow-for-values-of-different-types>
26    = help: you could instead create a new `enum` with a variant for each returned type
27
28 error[E0277]: cannot add `impl Foo` to `u32`
29   --> $DIR/equality.rs:24:11
30    |
31 LL |         n + sum_to(n - 1)
32    |           ^ no implementation for `u32 + impl Foo`
33    |
34    = help: the trait `Add<impl Foo>` is not implemented for `u32`
35
36 error: aborting due to 2 previous errors; 1 warning emitted
37
38 Some errors have detailed explanations: E0277, E0308.
39 For more information about an error, try `rustc --explain E0277`.