summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/object-unsafety.rs
blob: 7bdd863a762c4069d3f1fdcb5a1e7f8c5c519981 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// compile-flags: -Ztrait-solver=next

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 `dyn Setup<From = T>: Setup` is not satisfied
}

fn main() {
    let x = String::from("Hello, world");
    let y = copy_any(&x);
    println!("{y}");
}