22 lines
770 B
Plaintext
22 lines
770 B
Plaintext
error[E0589]: invalid `repr(align)` attribute: not an unsuffixed integer
|
|
--> $DIR/repr-align.rs:3:8
|
|
|
|
|
LL | #[repr(align(16.0))] //~ ERROR: invalid `repr(align)` attribute: not an unsuffixed integer
|
|
| ^^^^^^^^^^^
|
|
|
|
error[E0589]: invalid `repr(align)` attribute: not a power of two
|
|
--> $DIR/repr-align.rs:6:8
|
|
|
|
|
LL | #[repr(align(15))] //~ ERROR: invalid `repr(align)` attribute: not a power of two
|
|
| ^^^^^^^^^
|
|
|
|
error[E0589]: invalid `repr(align)` attribute: larger than 2^29
|
|
--> $DIR/repr-align.rs:9:8
|
|
|
|
|
LL | #[repr(align(4294967296))] //~ ERROR: invalid `repr(align)` attribute: larger than 2^29
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0589`.
|