2018-04-29 17:46:41 +00:00
|
|
|
error[E0693]: incorrect `repr(align)` attribute format
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/repr-align-assign.rs:5:8
|
2018-04-29 17:46:41 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[repr(align=8)]
|
2018-04-29 17:46:41 +00:00
|
|
|
| ^^^^^^^ help: use parentheses instead: `align(8)`
|
|
|
|
|
|
|
|
error[E0693]: incorrect `repr(align)` attribute format
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/repr-align-assign.rs:8:8
|
2018-04-29 17:46:41 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | #[repr(align="8")]
|
2018-04-29 17:46:41 +00:00
|
|
|
| ^^^^^^^^^ help: use parentheses instead: `align(8)`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|