rust/tests/ui/async-await/issues/issue-65436-raw-ptr-not-send.rs
2023-09-23 13:34:07 +00:00

18 lines
268 B
Rust

// edition:2018
// check-pass
// compile-flags: -Zdrop-tracking=yes
struct Foo(*const u8);
unsafe impl Send for Foo {}
async fn bar(_: Foo) {}
fn assert_send<T: Send>(_: T) {}
fn main() {
assert_send(async {
bar(Foo(std::ptr::null())).await;
})
}