summaryrefslogtreecommitdiffstats
path: root/tests/ui/coroutine/static-not-unpin.rs
blob: 6ce78046dcc89a514b117c9cdc04731ccc74cd36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// revisions: current next
//[next] compile-flags: -Ztrait-solver=next

#![feature(coroutines)]

// normalize-stderr-test "std::pin::Unpin" -> "std::marker::Unpin"

use std::marker::Unpin;

fn assert_unpin<T: Unpin>(_: T) {
}

fn main() {
    let mut coroutine = static || {
        yield;
    };
    assert_unpin(coroutine); //~ ERROR E0277
}