summaryrefslogtreecommitdiffstats
path: root/third_party/rust/pin-project/tests/ui/pin_project/unpin_sneaky.rs
blob: 3f5f32be6947059e566ce5044e1213ebf90856b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
use pin_project::pin_project;

#[pin_project]
struct S {
    #[pin]
    f: u8,
}

impl Unpin for __S {} //~ ERROR E0412,E0321

fn main() {}