2021-10-20 17:18:26 -05:00
|
|
|
error[E0277]: the trait bound `Uwu<10_u32, 12_u32>: Trait` is not satisfied
|
2022-02-16 09:48:46 -06:00
|
|
|
--> $DIR/rp_impl_trait_fail.rs:6:14
|
2021-10-20 17:18:26 -05:00
|
|
|
|
|
2022-02-16 09:48:46 -06:00
|
|
|
LL | fn rawr() -> impl Trait {
|
|
|
|
| ^^^^^^^^^^ the trait `Trait` is not implemented for `Uwu<10_u32, 12_u32>`
|
2021-10-20 17:18:26 -05:00
|
|
|
|
|
|
|
|
= help: the following implementations were found:
|
|
|
|
<Uwu<N> as Trait>
|
|
|
|
|
2022-02-16 09:48:46 -06:00
|
|
|
error[E0277]: the trait bound `Uwu<10_u32, 12_u32>: Trait` is not satisfied
|
|
|
|
--> $DIR/rp_impl_trait_fail.rs:6:25
|
|
|
|
|
|
|
|
|
LL | fn rawr() -> impl Trait {
|
|
|
|
| _________________________^
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | Uwu::<10, 12>
|
|
|
|
LL | | }
|
|
|
|
| |_^ the trait `Trait` is not implemented for `Uwu<10_u32, 12_u32>`
|
|
|
|
|
|
|
|
|
= help: the following implementations were found:
|
|
|
|
<Uwu<N> as Trait>
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `u32: Traitor<N, N>` is not satisfied
|
|
|
|
--> $DIR/rp_impl_trait_fail.rs:18:26
|
|
|
|
|
|
|
|
|
LL | fn uwu<const N: u8>() -> impl Traitor<N> {
|
|
|
|
| ^^^^^^^^^^^^^^^ the trait `Traitor<N, N>` is not implemented for `u32`
|
|
|
|
|
|
|
|
|
= help: the following implementations were found:
|
|
|
|
<u32 as Traitor<N, 2_u8>>
|
|
|
|
<u64 as Traitor<1_u8, 2_u8>>
|
|
|
|
|
2021-10-20 17:18:26 -05:00
|
|
|
error[E0277]: the trait bound `u32: Traitor<N, N>` is not satisfied
|
2022-02-16 09:48:46 -06:00
|
|
|
--> $DIR/rp_impl_trait_fail.rs:18:42
|
2021-10-20 17:18:26 -05:00
|
|
|
|
|
2022-02-16 09:48:46 -06:00
|
|
|
LL | fn uwu<const N: u8>() -> impl Traitor<N> {
|
|
|
|
| __________________________________________^
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | 1_u32
|
|
|
|
LL | | }
|
|
|
|
| |_^ the trait `Traitor<N, N>` is not implemented for `u32`
|
2021-10-20 17:18:26 -05:00
|
|
|
|
|
|
|
|
= help: the following implementations were found:
|
|
|
|
<u32 as Traitor<N, 2_u8>>
|
2021-12-23 02:31:04 -06:00
|
|
|
<u64 as Traitor<1_u8, 2_u8>>
|
2021-10-20 17:18:26 -05:00
|
|
|
|
|
|
|
error[E0277]: the trait bound `u64: Traitor<1_u8, 1_u8>` is not satisfied
|
2022-02-16 09:48:46 -06:00
|
|
|
--> $DIR/rp_impl_trait_fail.rs:24:13
|
|
|
|
|
|
|
|
|
LL | fn owo() -> impl Traitor {
|
|
|
|
| ^^^^^^^^^^^^ the trait `Traitor<1_u8, 1_u8>` is not implemented for `u64`
|
|
|
|
|
|
|
|
|
= help: the following implementations were found:
|
|
|
|
<u64 as Traitor<1_u8, 2_u8>>
|
|
|
|
<u32 as Traitor<N, 2_u8>>
|
|
|
|
|
|
|
|
error[E0277]: the trait bound `u64: Traitor<1_u8, 1_u8>` is not satisfied
|
|
|
|
--> $DIR/rp_impl_trait_fail.rs:24:26
|
2021-10-20 17:18:26 -05:00
|
|
|
|
|
2022-02-16 09:48:46 -06:00
|
|
|
LL | fn owo() -> impl Traitor {
|
|
|
|
| __________________________^
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | | 1_u64
|
|
|
|
LL | | }
|
|
|
|
| |_^ the trait `Traitor<1_u8, 1_u8>` is not implemented for `u64`
|
2021-10-20 17:18:26 -05:00
|
|
|
|
|
|
|
|
= help: the following implementations were found:
|
|
|
|
<u64 as Traitor<1_u8, 2_u8>>
|
2021-12-23 02:31:04 -06:00
|
|
|
<u32 as Traitor<N, 2_u8>>
|
2021-10-20 17:18:26 -05:00
|
|
|
|
2022-02-16 09:48:46 -06:00
|
|
|
error: aborting due to 6 previous errors
|
2021-10-20 17:18:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|