From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/issues/issue-45730.stderr | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/ui/issues/issue-45730.stderr (limited to 'tests/ui/issues/issue-45730.stderr') diff --git a/tests/ui/issues/issue-45730.stderr b/tests/ui/issues/issue-45730.stderr new file mode 100644 index 000000000..d00f3d91b --- /dev/null +++ b/tests/ui/issues/issue-45730.stderr @@ -0,0 +1,27 @@ +error[E0641]: cannot cast to a pointer of an unknown kind + --> $DIR/issue-45730.rs:3:28 + | +LL | let x: *const _ = 0 as _; + | ^ needs more type information + | + = note: the type information given here is insufficient to check whether the pointer cast is valid + +error[E0641]: cannot cast to a pointer of an unknown kind + --> $DIR/issue-45730.rs:5:28 + | +LL | let x: *const _ = 0 as *const _; + | ^^^^^^^^ needs more type information + | + = note: the type information given here is insufficient to check whether the pointer cast is valid + +error[E0641]: cannot cast to a pointer of an unknown kind + --> $DIR/issue-45730.rs:8:44 + | +LL | let x = 0 as *const i32 as *const _ as *mut _; + | ^^^^^^ needs more type information + | + = note: the type information given here is insufficient to check whether the pointer cast is valid + +error: aborting due to 3 previous errors + +For more information about this error, try `rustc --explain E0641`. -- cgit v1.2.3