forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 6
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
d3dd34a
commit 8edf9b8
Showing
2 changed files
with
91 additions
and
44 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() {} |