16 lines
297 B
Rust
16 lines
297 B
Rust
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
// https://github.com/taiki-e/pin-project/issues/342
|
|
|
|
use auxiliary_macro::hidden_repr2;
|
|
use pin_project::pin_project;
|
|
|
|
#[pin_project] //~ ERROR reference to packed field is unaligned
|
|
#[hidden_repr2]
|
|
struct A {
|
|
#[pin]
|
|
f: u32,
|
|
}
|
|
|
|
fn main() {}
|