-
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.
Check def id before calling match_projection_projections
- Loading branch information
1 parent
0fd5712
commit 43dae69
Showing
2 changed files
with
41 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
38 changes: 38 additions & 0 deletions
38
tests/ui/traits/make-sure-to-filter-projections-by-def-id.rs
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,38 @@ | ||
//@ check-pass | ||
|
||
#![recursion_limit = "1024"] | ||
// Really high recursion limit ^ | ||
|
||
// Test that ensures we're filtering projections by def id before matching | ||
// them in `match_projection_projections`. | ||
|
||
use std::ops::{Add, Sub}; | ||
|
||
pub trait Scalar {} | ||
|
||
pub trait VectorCommon: Sized { | ||
type T: Scalar; | ||
} | ||
|
||
pub trait VectorOpsByValue<Rhs = Self, Output = Self>: | ||
VectorCommon + Add<Rhs, Output = Output> + Sub<Rhs, Output = Output> | ||
{ | ||
} | ||
|
||
pub trait VectorView<'a>: | ||
VectorOpsByValue<Self, Self::Owned> + VectorOpsByValue<Self::Owned, Self::Owned> | ||
{ | ||
type Owned; | ||
} | ||
|
||
pub trait Vector: VectorOpsByValue<Self> + for<'a> VectorOpsByValue<Self::View<'a>> { | ||
type View<'a>: VectorView<'a, T = Self::T, Owned = Self> | ||
where | ||
Self: 'a; | ||
} | ||
|
||
pub trait MatrixCommon { | ||
type V: Vector; | ||
} | ||
|
||
fn main() {} |