-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Item bounds can reference self projections and still be object safe
- Loading branch information
1 parent
49ff390
commit b7b1b3e
Showing
2 changed files
with
90 additions
and
43 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
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,11 @@ | ||
//@ check-pass | ||
|
||
pub trait Foo { | ||
type X: PartialEq; | ||
type Y: PartialEq<Self::Y>; | ||
type Z: PartialEq<Self::Y>; | ||
} | ||
|
||
fn uwu(x: &dyn Foo<X = i32, Y = i32, Z = i32>) {} | ||
|
||
fn main() {} |