mirror of https://github.com/rust-lang/rust
17 lines
415 B
Rust
17 lines
415 B
Rust
//@ build-pass
|
|
|
|
//! Like drop-tracking-parent-expression, but also tests that this doesn't ICE when building MIR
|
|
#![feature(coroutines, stmt_expr_attributes)]
|
|
|
|
fn assert_send<T: Send>(_thing: T) {}
|
|
|
|
#[derive(Default)]
|
|
pub struct Client { pub nickname: String }
|
|
|
|
fn main() {
|
|
let g = #[coroutine] move || match drop(Client { ..Client::default() }) {
|
|
_status => yield,
|
|
};
|
|
assert_send(g);
|
|
}
|