-
-
Save rust-play/0aacfa288b7a21ddca0b283d89802ca3 to your computer and use it in GitHub Desktop.
Code shared from the Rust Playground
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pub trait Corge<T> { | |
type Fred; | |
} | |
impl Corge<u8> for () { | |
type Fred = u32; | |
} | |
pub trait Waldo { | |
type Quax; | |
} | |
impl Waldo for u32 { | |
type Quax = u8; | |
} | |
pub trait Grault | |
where | |
(): Corge<Self::Thud>, | |
{ | |
type Thud; | |
fn bar(_: <() as Corge<Self::Thud>>::Fred) {} | |
} | |
impl<T> Grault for T | |
where | |
T: Waldo, | |
(): Corge<T::Quax>, | |
<() as Corge<T::Quax>>::Fred: Waldo, | |
{ | |
type Thud = u8; | |
} | |
pub trait Plugh<I> { | |
fn baz(); | |
} | |
#[derive(Copy, Clone, Debug)] | |
pub struct Qiz<T> { | |
foo: T, | |
} | |
impl<T> Plugh<<() as Corge<T::Thud>>::Fred> for Qiz<T> | |
where | |
T: Grault, | |
(): Corge<T::Thud>, | |
{ | |
fn baz() {} | |
} | |
pub fn test2() { | |
<Qiz<u32> as Plugh<u32>>::baz(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment