rust/tests/ui/traits/next-solver/dyn-incompatibility.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
619 B
Rust
Raw Normal View History

2023-12-14 12:11:28 +00:00
//@ compile-flags: -Znext-solver
trait Setup {
type From: Copy;
}
fn copy<U: Setup + ?Sized>(from: &U::From) -> U::From {
*from
}
pub fn copy_any<T>(t: &T) -> T {
copy::<dyn Setup<From=T>>(t)
//~^ ERROR the trait bound `T: Copy` is not satisfied in `dyn Setup<From = T>`
2023-06-27 21:13:50 +00:00
//~| ERROR mismatched types
//~| ERROR the trait bound `T: Copy` is not satisfied
2023-06-27 21:13:50 +00:00
2023-12-14 12:11:28 +00:00
// FIXME(-Znext-solver): These error messages are horrible and some of them
2023-06-27 21:13:50 +00:00
// are even simple fallout from previous error.
}
fn main() {
let x = String::from("Hello, world");
let y = copy_any(&x);
println!("{y}");
}