summaryrefslogtreecommitdiffstats
path: root/tests/ui/transmutability/alignment/align-fail.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-30 03:57:31 +0000
commitdc0db358abe19481e475e10c32149b53370f1a1c (patch)
treeab8ce99c4b255ce46f99ef402c27916055b899ee /tests/ui/transmutability/alignment/align-fail.stderr
parentReleasing progress-linux version 1.71.1+dfsg1-2~progress7.99u1. (diff)
downloadrustc-dc0db358abe19481e475e10c32149b53370f1a1c.tar.xz
rustc-dc0db358abe19481e475e10c32149b53370f1a1c.zip
Merging upstream version 1.72.1+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/transmutability/alignment/align-fail.stderr')
-rw-r--r--tests/ui/transmutability/alignment/align-fail.stderr30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ui/transmutability/alignment/align-fail.stderr b/tests/ui/transmutability/alignment/align-fail.stderr
new file mode 100644
index 000000000..59246fb1b
--- /dev/null
+++ b/tests/ui/transmutability/alignment/align-fail.stderr
@@ -0,0 +1,30 @@
+error[E0277]: `&[u8; 0]` cannot be safely transmuted into `&[u16; 0]` in the defining scope of `assert::Context`
+ --> $DIR/align-fail.rs:22:55
+ |
+LL | ...tatic [u8; 0], &'static [u16; 0]>();
+ | ^^^^^^^^^^^^^^^^^ The minimum alignment of `&[u8; 0]` (1) should be greater than that of `&[u16; 0]` (2)
+ |
+note: required by a bound in `is_maybe_transmutable`
+ --> $DIR/align-fail.rs:10:14
+ |
+LL | pub fn is_maybe_transmutable<Src, Dst>()
+ | --------------------- required by a bound in this function
+LL | where
+LL | Dst: BikeshedIntrinsicFrom<Src, Context, {
+ | ______________^
+LL | | Assume {
+LL | | alignment: false,
+LL | | lifetimes: true,
+... |
+LL | | }
+LL | | }>
+ | |__________^ required by this bound in `is_maybe_transmutable`
+help: consider removing the leading `&`-reference
+ |
+LL - assert::is_maybe_transmutable::<&'static [u8; 0], &'static [u16; 0]>();
+LL + assert::is_maybe_transmutable::<&'static [u8; 0], [u16; 0]>();
+ |
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.