aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/cfg/unsupported.rs
blob: b950d4b828deada70679f3b7e85d06953397a8c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
use pin_project::pin_project;

#[pin_project]
struct S {
    //~^ ERROR may not be used on structs with zero fields
    #[cfg(any())]
    #[pin]
    f: u8,
}

fn main() {}