summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-consts/associated-const-impl-wrong-type.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/associated-consts/associated-const-impl-wrong-type.stderr')
-rw-r--r--tests/ui/associated-consts/associated-const-impl-wrong-type.stderr15
1 files changed, 15 insertions, 0 deletions
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`.