Add tests for shortcomings of associated type bounds

This commit is contained in:
Michael Goulet 2024-03-21 10:28:52 -04:00
parent 03994e498d
commit 8ca7aac3eb
4 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,18 @@
trait Id {
type This: ?Sized;
}
impl<T: ?Sized> Id for T {
type This = T;
}
trait Trait {
type Assoc: Id<This: Copy>;
}
// We can't see use the `T::Assoc::This: Copy` bound to prove `T::Assoc: Copy`
fn foo<T: Trait>(x: T::Assoc) -> (T::Assoc, T::Assoc) {
(x, x)
//~^ ERROR use of moved value
}
fn main() {}

View File

@ -0,0 +1,13 @@
error[E0382]: use of moved value: `x`
--> $DIR/cant-see-copy-bound-from-child-rigid-2.rs:14:9
|
LL | fn foo<T: Trait>(x: T::Assoc) -> (T::Assoc, T::Assoc) {
| - move occurs because `x` has type `<T as Trait>::Assoc`, which does not implement the `Copy` trait
LL | (x, x)
| - ^ value used here after move
| |
| value moved here
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0382`.

View File

@ -0,0 +1,18 @@
trait Id {
type This: ?Sized;
}
trait Trait {
type Assoc: Id<This: Copy>;
}
// We can't see use the `T::Assoc::This: Copy` bound to prove `T::Assoc: Copy`
fn foo<T: Trait>(x: T::Assoc) -> (T::Assoc, T::Assoc)
where
T::Assoc: Id<This = T::Assoc>,
{
(x, x)
//~^ ERROR use of moved value
}
fn main() {}

View File

@ -0,0 +1,14 @@
error[E0382]: use of moved value: `x`
--> $DIR/cant-see-copy-bound-from-child-rigid.rs:14:9
|
LL | fn foo<T: Trait>(x: T::Assoc) -> (T::Assoc, T::Assoc)
| - move occurs because `x` has type `<T as Trait>::Assoc`, which does not implement the `Copy` trait
...
LL | (x, x)
| - ^ value used here after move
| |
| value moved here
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0382`.