mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
23 lines
503 B
Rust
23 lines
503 B
Rust
//@ revisions: current next
|
|
//@ ignore-compare-mode-next-solver (explicit revisions)
|
|
//@[next] compile-flags: -Znext-solver
|
|
//@ run-pass
|
|
|
|
#![feature(coroutines, coroutine_trait)]
|
|
#![allow(dropping_copy_types)]
|
|
|
|
use std::marker::PhantomPinned;
|
|
|
|
fn assert_unpin<G: Unpin>(_: G) {
|
|
}
|
|
|
|
fn main() {
|
|
// Even though this coroutine holds a `PhantomPinned` in its environment, it
|
|
// remains `Unpin`.
|
|
assert_unpin(|| {
|
|
let pinned = PhantomPinned;
|
|
yield;
|
|
drop(pinned);
|
|
});
|
|
}
|