From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/binop/issue-3820.stderr | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tests/ui/binop/issue-3820.stderr (limited to 'tests/ui/binop/issue-3820.stderr') diff --git a/tests/ui/binop/issue-3820.stderr b/tests/ui/binop/issue-3820.stderr new file mode 100644 index 000000000..c313ed603 --- /dev/null +++ b/tests/ui/binop/issue-3820.stderr @@ -0,0 +1,19 @@ +error[E0369]: cannot multiply `Thing` by `{integer}` + --> $DIR/issue-3820.rs:14:15 + | +LL | let w = u * 3; + | - ^ - {integer} + | | + | Thing + | +note: an implementation of `Mul<_>` might be missing for `Thing` + --> $DIR/issue-3820.rs:1:1 + | +LL | struct Thing { + | ^^^^^^^^^^^^ must implement `Mul<_>` +note: the trait `Mul` must be implemented + --> $SRC_DIR/core/src/ops/arith.rs:LL:COL + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0369`. -- cgit v1.2.3