Skip to content

Commit

Permalink
Rollup merge of rust-lang#122826 - compiler-errors:associated-type-bo…
Browse files Browse the repository at this point in the history
…und-tests, r=lcnr

Add tests for shortcomings of associated type bounds

Adds the test in rust-lang#122791 (comment)

Turns out that rust-lang#121123 is what breaks `tests/ui/associated-type-bounds/cant-see-copy-bound-from-child-rigid.rs` (passes on nightly), but given that associated type bounds haven't landed anywhere yet, I'm happy with breaking it.

This is unrelated to rust-lang#122791, which just needed that original commit e6b64c6 stacked on top of it so that it wouldn't have tests failing.

r? lcnr
  • Loading branch information
matthiaskrgr committed Mar 21, 2024
2 parents e4ee362 + 8ca7aac commit 63040a4
Show file tree
Hide file tree
Showing 4 changed files with 63 additions and 0 deletions.
@@ -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() {}
@@ -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`.
@@ -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() {}
@@ -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`.

0 comments on commit 63040a4

Please sign in to comment.