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-8761.stderr | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 tests/ui/issues/issue-8761.stderr (limited to 'tests/ui/issues/issue-8761.stderr') diff --git a/tests/ui/issues/issue-8761.stderr b/tests/ui/issues/issue-8761.stderr new file mode 100644 index 000000000..c70093baf --- /dev/null +++ b/tests/ui/issues/issue-8761.stderr @@ -0,0 +1,25 @@ +error[E0308]: mismatched types + --> $DIR/issue-8761.rs:2:9 + | +LL | A = 1i64, + | ^^^^ expected `isize`, found `i64` + | +help: change the type of the numeric literal from `i64` to `isize` + | +LL | A = 1isize, + | ~~~~~ + +error[E0308]: mismatched types + --> $DIR/issue-8761.rs:5:9 + | +LL | B = 2u8 + | ^^^ expected `isize`, found `u8` + | +help: change the type of the numeric literal from `u8` to `isize` + | +LL | B = 2isize + | ~~~~~ + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0308`. -- cgit v1.2.3