forked from rust-lang/rust
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add regression test for issue rust-lang#78632
- Loading branch information
Showing
1 changed file
with
59 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// check-pass | ||
// | ||
// Regression test for issue #78632 | ||
|
||
#![crate_type = "lib"] | ||
|
||
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 test() { | ||
<Qiz<u32> as Plugh<u32>>::baz(); | ||
} |