]> git.proxmox.com Git - rustc.git/blame - src/test/ui/repr-align-assign.stderr
New upstream version 1.28.0~beta.14+dfsg1
[rustc.git] / src / test / ui / repr-align-assign.stderr
CommitLineData
83c7162d 1error[E0693]: incorrect `repr(align)` attribute format
94b46f34 2 --> $DIR/repr-align-assign.rs:15:8
83c7162d
XL
3 |
4LL | #[repr(align=8)] //~ ERROR incorrect `repr(align)` attribute format
5 | ^^^^^^^ help: use parentheses instead: `align(8)`
6
7error[E0693]: incorrect `repr(align)` attribute format
94b46f34 8 --> $DIR/repr-align-assign.rs:18:8
83c7162d
XL
9 |
10LL | #[repr(align="8")] //~ ERROR incorrect `repr(align)` attribute format
11 | ^^^^^^^^^ help: use parentheses instead: `align(8)`
12
13error: aborting due to 2 previous errors
14
15For more information about this error, try `rustc --explain E0693`.