-
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.
- Loading branch information
Showing
3 changed files
with
73 additions
and
1 deletion.
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,49 @@ | ||
fn problematic_function<Space>(material_surface_element: ()) | ||
where | ||
DefaultAllocator: FiniteElementAllocator<(), Space>, | ||
{ | ||
let _: Point2<f64> = material_surface_element.map_reference_coords().into(); | ||
} | ||
|
||
impl<N, R> Allocator<N, R> for DefaultAllocator | ||
where | ||
R::Value: DimName, //~ ERROR: `Value` not found for `R` | ||
{ | ||
type Buffer = (); | ||
} | ||
impl<N> Allocator<N, ()> for DefaultAllocator {} | ||
//~^ ERROR: conflicting implementations | ||
impl DimName for () {} | ||
impl DimName for u32 {} | ||
impl<N, D: DimName> From<VectorN<N, D>> for Point<N, D> { | ||
fn from(_: VectorN<N, D>) -> Self { | ||
todo!() | ||
} | ||
} | ||
|
||
impl FiniteElement<u32> for () {} | ||
|
||
type VectorN<N, D> = Matrix<<DefaultAllocator as Allocator<N, D>>::Buffer>; | ||
|
||
type Point2<N> = Point<N, u32>; | ||
|
||
struct DefaultAllocator; | ||
struct Matrix<S>(S); | ||
struct Point<N, D>(N, D); | ||
|
||
trait Allocator<Scalar, R> { | ||
type Buffer; | ||
} | ||
trait DimName {} | ||
trait FiniteElementAllocator<GeometryDim, NodalDim>: | ||
Allocator<f64, ()> + Allocator<f64, NodalDim> | ||
{ | ||
} | ||
|
||
trait FiniteElement<GeometryDim> { | ||
fn map_reference_coords(&self) -> VectorN<f64, GeometryDim> { | ||
todo!() | ||
} | ||
} | ||
|
||
fn main() {} |
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,21 @@ | ||
error[E0220]: associated type `Value` not found for `R` | ||
--> $DIR/normalize-conflicting-impls.rs:10:8 | ||
| | ||
LL | R::Value: DimName, | ||
| ^^^^^ associated type `Value` not found | ||
|
||
error[E0119]: conflicting implementations of trait `Allocator<_, ()>` for type `DefaultAllocator` | ||
--> $DIR/normalize-conflicting-impls.rs:14:1 | ||
| | ||
LL | / impl<N, R> Allocator<N, R> for DefaultAllocator | ||
LL | | where | ||
LL | | R::Value: DimName, | ||
| |______________________- first implementation here | ||
... | ||
LL | impl<N> Allocator<N, ()> for DefaultAllocator {} | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `DefaultAllocator` | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
Some errors have detailed explanations: E0119, E0220. | ||
For more information about an error, try `rustc --explain E0119`. |