]> git.lizzy.rs Git - rust.git/blob - src/test/ui/repr/invalid_repr_list_help.stderr
Auto merge of #100845 - timvermeulen:iter_compare, r=scottmcm
[rust.git] / src / test / ui / repr / invalid_repr_list_help.stderr
1 error[E0552]: unrecognized representation hint
2   --> $DIR/invalid_repr_list_help.rs:3:8
3    |
4 LL | #[repr(uwu)]
5    |        ^^^
6    |
7    = help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
8
9 error[E0552]: unrecognized representation hint
10   --> $DIR/invalid_repr_list_help.rs:6:8
11    |
12 LL | #[repr(uwu = "a")]
13    |        ^^^^^^^^^
14    |
15    = help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
16
17 error[E0552]: unrecognized representation hint
18   --> $DIR/invalid_repr_list_help.rs:9:8
19    |
20 LL | #[repr(uwu(4))]
21    |        ^^^^^^
22    |
23    = help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
24
25 error[E0552]: unrecognized representation hint
26   --> $DIR/invalid_repr_list_help.rs:14:8
27    |
28 LL | #[repr(uwu, u8)]
29    |        ^^^
30    |
31    = help: valid reprs are `C`, `align`, `packed`, `transparent`, `simd`, `i8`, `u8`, `i16`, `u16`, `i32`, `u32`, `i64`, `u64`, `i128`, `u128`, `isize`, `usize`
32
33 error: aborting due to 4 previous errors
34
35 For more information about this error, try `rustc --explain E0552`.