]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-47094.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / issues / issue-47094.stderr
1 error[E0566]: conflicting representation hints
2   --> $DIR/issue-47094.rs:1:8
3    |
4 LL | #[repr(C, u8)]
5    |        ^  ^^
6    |
7    = note: `#[deny(conflicting_repr_hints)]` on by default
8    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
9    = note: for more information, see issue #68585 <https://github.com/rust-lang/rust/issues/68585>
10
11 error[E0566]: conflicting representation hints
12   --> $DIR/issue-47094.rs:8:8
13    |
14 LL | #[repr(C)]
15    |        ^
16 LL |
17 LL | #[repr(u8)]
18    |        ^^
19    |
20    = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
21    = note: for more information, see issue #68585 <https://github.com/rust-lang/rust/issues/68585>
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0566`.