9 lines
160 B
Rust
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() {}
|