2021-10-20 23:18:26 +01:00
|
|
|
struct Uwu<const N: u32 = 1, const M: u32 = N>;
|
|
|
|
|
|
|
|
trait Trait {}
|
|
|
|
impl<const N: u32> Trait for Uwu<N> {}
|
|
|
|
|
|
|
|
fn rawr() -> impl Trait {
|
2021-08-20 14:47:12 +00:00
|
|
|
//~^ error: the trait bound `Uwu<10_u32, 12_u32>: Trait` is not satisfied
|
2022-02-11 07:18:06 +00:00
|
|
|
Uwu::<10, 12>
|
2021-10-20 23:18:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
trait Traitor<const N: u8 = 1, const M: u8 = N> { }
|
|
|
|
|
|
|
|
impl<const N: u8> Traitor<N, 2> for u32 {}
|
|
|
|
impl Traitor<1, 2> for u64 {}
|
|
|
|
|
|
|
|
|
|
|
|
fn uwu<const N: u8>() -> impl Traitor<N> {
|
2021-08-20 14:47:12 +00:00
|
|
|
//~^ error: the trait bound `u32: Traitor<N, N>` is not satisfied
|
2022-02-11 07:18:06 +00:00
|
|
|
1_u32
|
2021-10-20 23:18:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn owo() -> impl Traitor {
|
2021-08-20 14:47:12 +00:00
|
|
|
//~^ error: the trait bound `u64: Traitor<1_u8, 1_u8>` is not satisfied
|
2022-02-11 07:18:06 +00:00
|
|
|
1_u64
|
2021-10-20 23:18:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
rawr();
|
|
|
|
uwu();
|
|
|
|
owo();
|
|
|
|
}
|