mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
19 lines
219 B
Rust
19 lines
219 B
Rust
struct Foo {
|
|
bar: Bar
|
|
}
|
|
|
|
struct Bar {
|
|
baz: Baz
|
|
}
|
|
|
|
struct Baz {
|
|
x: *const u8
|
|
}
|
|
|
|
fn is_send<T: Send>() { }
|
|
|
|
fn main() {
|
|
is_send::<Foo>();
|
|
//~^ ERROR `*const u8` cannot be sent between threads safely
|
|
}
|