2022-07-01 00:05:00 -05:00
|
|
|
//@ build-pass
|
|
|
|
|
|
|
|
//! Like drop-tracking-parent-expression, but also tests that this doesn't ICE when building MIR
|
2023-10-19 16:46:28 -05:00
|
|
|
#![feature(coroutines)]
|
2022-07-01 00:05:00 -05:00
|
|
|
|
|
|
|
fn assert_send<T: Send>(_thing: T) {}
|
|
|
|
|
|
|
|
#[derive(Default)]
|
|
|
|
pub struct Client { pub nickname: String }
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let g = move || match drop(Client { ..Client::default() }) {
|
|
|
|
_status => yield,
|
|
|
|
};
|
|
|
|
assert_send(g);
|
|
|
|
}
|