]> git.lizzy.rs Git - rust.git/blob - src/test/ui/impl-trait/equality.stderr
Rollup merge of #93847 - solid-rs:fix-kmc-solid-fs-ts, r=yaahc
[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 this return type...
16 LL |     if x {
17 LL |         return 1_i32;
18    |                ----- ...is found to be `i32` here
19 LL |     }
20 LL |     0_u32
21    |     ^^^^^ expected `i32`, found `u32`
22    |
23    = note: to return `impl Trait`, all returned values must be of the same type
24    = note: for information on `impl Trait`, see <https://doc.rust-lang.org/book/ch10-02-traits.html#returning-types-that-implement-traits>
25    = help: if the trait `Foo` were object safe, you could return a boxed trait object
26    = 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>
27    = help: you could instead create a new `enum` with a variant for each returned type
28
29 error[E0277]: cannot add `impl Foo` to `u32`
30   --> $DIR/equality.rs:24:11
31    |
32 LL |         n + sum_to(n - 1)
33    |           ^ no implementation for `u32 + impl Foo`
34    |
35    = help: the trait `Add<impl Foo>` is not implemented for `u32`
36
37 error[E0283]: type annotations needed
38   --> $DIR/equality.rs:20:22
39    |
40 LL | fn sum_to(n: u32) -> impl Foo {
41    |                      ^^^^^^^^ cannot infer type for type `{integer}`
42    |
43    = note: multiple `impl`s satisfying `{integer}: ToString` found in the `alloc` crate:
44            - impl ToString for i8;
45            - impl ToString for u8;
46 note: required because of the requirements on the impl of `Foo` for `{integer}`
47   --> $DIR/equality.rs:5:26
48    |
49 LL | impl<T: Copy + ToString> Foo for T {}
50    |                          ^^^     ^
51
52 error: aborting due to 3 previous errors; 1 warning emitted
53
54 Some errors have detailed explanations: E0277, E0283, E0308.
55 For more information about an error, try `rustc --explain E0277`.