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 --- .../associated-const-impl-wrong-type.stderr | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 tests/ui/associated-consts/associated-const-impl-wrong-type.stderr (limited to 'tests/ui/associated-consts/associated-const-impl-wrong-type.stderr') diff --git a/tests/ui/associated-consts/associated-const-impl-wrong-type.stderr b/tests/ui/associated-consts/associated-const-impl-wrong-type.stderr new file mode 100644 index 000000000..f3616035f --- /dev/null +++ b/tests/ui/associated-consts/associated-const-impl-wrong-type.stderr @@ -0,0 +1,15 @@ +error[E0326]: implemented const `BAR` has an incompatible type for trait + --> $DIR/associated-const-impl-wrong-type.rs:8:16 + | +LL | const BAR: i32 = -1; + | ^^^ expected `u32`, found `i32` + | +note: type in trait + --> $DIR/associated-const-impl-wrong-type.rs:2:16 + | +LL | const BAR: u32; + | ^^^ + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0326`. -- cgit v1.2.3