blob: 5205307d221dd0976e09bfa95032657e6bda4acf [file] [log] [blame]
use pin_project::pin_project;
//~ ERROR may not be used on structs with zero fields
// span is lost.
// Refs: https://github.com/rust-lang/rust/issues/43081
#[pin_project]
struct Struct {
#[cfg(any())]
#[pin]
f: u8,
}
fn main() {}