rust/tests/ui/impl-trait/in-trait/check-wf-on-non-defaulted-rpitit.rs
2023-10-13 21:01:36 +00:00

9 lines
160 B
Rust

struct Wrapper<G: Send>(G);
trait Foo {
fn bar() -> Wrapper<impl Sized>;
//~^ ERROR `impl Sized` cannot be sent between threads safely
}
fn main() {}