rust/tests/ui/generator/static-not-unpin.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
272 B
Rust
Raw Normal View History

2018-11-04 21:07:55 +00:00
#![feature(generators)]
// normalize-stderr-test "std::pin::Unpin" -> "std::marker::Unpin"
2018-11-04 21:07:55 +00:00
use std::marker::Unpin;
fn assert_unpin<T: Unpin>(_: T) {
}
fn main() {
let mut generator = static || {
yield;
};
assert_unpin(generator); //~ ERROR E0277
2018-11-04 21:07:55 +00:00
}