|
| 1 | +error[E0589]: invalid `repr(align)` attribute: not an unsuffixed integer |
| 2 | + --> $DIR/repr-align.rs:8:14 |
| 3 | + | |
| 4 | +LL | #[repr(align(16.0))] |
| 5 | + | ^^^^ |
| 6 | + |
| 7 | +error[E0589]: invalid `repr(align)` attribute: not a power of two |
| 8 | + --> $DIR/repr-align.rs:11:14 |
| 9 | + | |
| 10 | +LL | #[repr(align(15))] |
| 11 | + | ^^ |
| 12 | + |
| 13 | +error[E0589]: invalid `repr(align)` attribute: larger than 2^29 |
| 14 | + --> $DIR/repr-align.rs:14:14 |
| 15 | + | |
| 16 | +LL | #[repr(align(4294967296))] |
| 17 | + | ^^^^^^^^^^ |
| 18 | + |
| 19 | +error[E0589]: invalid `repr(align)` attribute: not a power of two |
| 20 | + --> $DIR/repr-align.rs:21:14 |
| 21 | + | |
| 22 | +LL | #[repr(align(0))] |
| 23 | + | ^ |
| 24 | + |
| 25 | +error[E0589]: invalid `repr(align)` attribute: not an unsuffixed integer |
| 26 | + --> $DIR/repr-align.rs:27:14 |
| 27 | + | |
| 28 | +LL | #[repr(align(16.0))] |
| 29 | + | ^^^^ |
| 30 | + |
| 31 | +error[E0589]: invalid `repr(align)` attribute: not a power of two |
| 32 | + --> $DIR/repr-align.rs:30:14 |
| 33 | + | |
| 34 | +LL | #[repr(align(15))] |
| 35 | + | ^^ |
| 36 | + |
| 37 | +error[E0589]: invalid `repr(align)` attribute: larger than 2^29 |
| 38 | + --> $DIR/repr-align.rs:33:14 |
| 39 | + | |
| 40 | +LL | #[repr(align(4294967296))] |
| 41 | + | ^^^^^^^^^^ |
| 42 | + |
| 43 | +error[E0589]: invalid `repr(align)` attribute: not a power of two |
| 44 | + --> $DIR/repr-align.rs:40:14 |
| 45 | + | |
| 46 | +LL | #[repr(align(0))] |
| 47 | + | ^ |
| 48 | + |
| 49 | +error[E0589]: invalid alignment value: not an unsuffixed integer |
| 50 | + --> $DIR/repr-align.rs:46:9 |
| 51 | + | |
| 52 | +LL | #[align(16.0)] |
| 53 | + | ^^^^ |
| 54 | + |
| 55 | +error[E0589]: invalid alignment value: not a power of two |
| 56 | + --> $DIR/repr-align.rs:49:9 |
| 57 | + | |
| 58 | +LL | #[align(15)] |
| 59 | + | ^^ |
| 60 | + |
| 61 | +error[E0589]: invalid alignment value: larger than 2^29 |
| 62 | + --> $DIR/repr-align.rs:52:9 |
| 63 | + | |
| 64 | +LL | #[align(4294967296)] |
| 65 | + | ^^^^^^^^^^ |
| 66 | + |
| 67 | +error[E0589]: invalid alignment value: not a power of two |
| 68 | + --> $DIR/repr-align.rs:59:9 |
| 69 | + | |
| 70 | +LL | #[align(0)] |
| 71 | + | ^ |
| 72 | + |
| 73 | +error[E0806]: alignment must not be greater than 8192 bytes for COFF targets |
| 74 | + --> $DIR/repr-align.rs:17:8 |
| 75 | + | |
| 76 | +LL | #[repr(align(536870912))] |
| 77 | + | ^^^^^^^^^^^^^^^^ |
| 78 | + |
| 79 | +error[E0806]: alignment must not be greater than 8192 bytes for COFF targets |
| 80 | + --> $DIR/repr-align.rs:24:8 |
| 81 | + | |
| 82 | +LL | #[repr(align(16384))] |
| 83 | + | ^^^^^^^^^^^^ |
| 84 | + |
| 85 | +error[E0806]: alignment must not be greater than 8192 bytes for COFF targets |
| 86 | + --> $DIR/repr-align.rs:36:8 |
| 87 | + | |
| 88 | +LL | #[repr(align(536870912))] |
| 89 | + | ^^^^^^^^^^^^^^^^ |
| 90 | + |
| 91 | +error[E0806]: alignment must not be greater than 8192 bytes for COFF targets |
| 92 | + --> $DIR/repr-align.rs:43:8 |
| 93 | + | |
| 94 | +LL | #[repr(align(16384))] |
| 95 | + | ^^^^^^^^^^^^ |
| 96 | + |
| 97 | +error[E0806]: alignment must not be greater than 8192 bytes for COFF targets |
| 98 | + --> $DIR/repr-align.rs:55:1 |
| 99 | + | |
| 100 | +LL | #[align(536870912)] |
| 101 | + | ^^^^^^^^^^^^^^^^^^^ |
| 102 | + |
| 103 | +error[E0806]: alignment must not be greater than 8192 bytes for COFF targets |
| 104 | + --> $DIR/repr-align.rs:62:1 |
| 105 | + | |
| 106 | +LL | #[align(16384)] |
| 107 | + | ^^^^^^^^^^^^^^^ |
| 108 | + |
| 109 | +error: aborting due to 18 previous errors |
| 110 | + |
| 111 | +Some errors have detailed explanations: E0589, E0806. |
| 112 | +For more information about an error, try `rustc --explain E0589`. |
0 commit comments