• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // SPDX-License-Identifier: Apache-2.0 OR MIT
2 
3 // https://github.com/taiki-e/pin-project/issues/342
4 
5 use auxiliary_macro::hidden_repr2;
6 use pin_project::pin_project;
7 
8 #[pin_project] //~ ERROR reference to packed field is unaligned
9 #[hidden_repr2]
10 struct A {
11     #[pin]
12     f: u32,
13 }
14 
main()15 fn main() {}
16