]> git.lizzy.rs Git - rust.git/blob - src/test/ui/repr/repr-align.stderr
Override rustc version in ui and mir-opt tests to get stable hashes
[rust.git] / src / test / ui / repr / repr-align.stderr
1 error[E0589]: invalid `repr(align)` attribute: not an unsuffixed integer
2   --> $DIR/repr-align.rs:3:8
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:7:8
9    |
10 LL | #[repr(align(15))]
11    |        ^^^^^^^^^
12
13 error[E0589]: invalid `repr(align)` attribute: larger than 2^29
14   --> $DIR/repr-align.rs:11:8
15    |
16 LL | #[repr(align(4294967296))]
17    |        ^^^^^^^^^^^^^^^^^
18
19 error[E0589]: invalid `repr(align)` attribute: not an unsuffixed integer
20   --> $DIR/repr-align.rs:18:8
21    |
22 LL | #[repr(align(16.0))]
23    |        ^^^^^^^^^^^
24
25 error[E0589]: invalid `repr(align)` attribute: not a power of two
26   --> $DIR/repr-align.rs:22:8
27    |
28 LL | #[repr(align(15))]
29    |        ^^^^^^^^^
30
31 error[E0589]: invalid `repr(align)` attribute: larger than 2^29
32   --> $DIR/repr-align.rs:26:8
33    |
34 LL | #[repr(align(4294967296))]
35    |        ^^^^^^^^^^^^^^^^^
36
37 error[E0589]: invalid `repr(align)` attribute: not an unsuffixed integer
38   --> $DIR/repr-align.rs:3:8
39    |
40 LL | #[repr(align(16.0))]
41    |        ^^^^^^^^^^^
42
43 error[E0589]: invalid `repr(align)` attribute: not a power of two
44   --> $DIR/repr-align.rs:7:8
45    |
46 LL | #[repr(align(15))]
47    |        ^^^^^^^^^
48
49 error[E0589]: invalid `repr(align)` attribute: larger than 2^29
50   --> $DIR/repr-align.rs:11:8
51    |
52 LL | #[repr(align(4294967296))]
53    |        ^^^^^^^^^^^^^^^^^
54
55 error[E0589]: invalid `repr(align)` attribute: not an unsuffixed integer
56   --> $DIR/repr-align.rs:18:8
57    |
58 LL | #[repr(align(16.0))]
59    |        ^^^^^^^^^^^
60
61 error[E0589]: invalid `repr(align)` attribute: not a power of two
62   --> $DIR/repr-align.rs:22:8
63    |
64 LL | #[repr(align(15))]
65    |        ^^^^^^^^^
66
67 error[E0589]: invalid `repr(align)` attribute: larger than 2^29
68   --> $DIR/repr-align.rs:26:8
69    |
70 LL | #[repr(align(4294967296))]
71    |        ^^^^^^^^^^^^^^^^^
72
73 error: aborting due to 12 previous errors
74
75 For more information about this error, try `rustc --explain E0589`.