summaryrefslogtreecommitdiffstats
path: root/src/test/ui/traits/staticness-mismatch.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/traits/staticness-mismatch.stderr')
-rw-r--r--src/test/ui/traits/staticness-mismatch.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/test/ui/traits/staticness-mismatch.stderr b/src/test/ui/traits/staticness-mismatch.stderr
new file mode 100644
index 000000000..b67ac5adb
--- /dev/null
+++ b/src/test/ui/traits/staticness-mismatch.stderr
@@ -0,0 +1,12 @@
+error[E0185]: method `bar` has a `&self` declaration in the impl, but not in the trait
+ --> $DIR/staticness-mismatch.rs:7:5
+ |
+LL | fn bar();
+ | --------- trait method declared without `&self`
+...
+LL | fn bar(&self) {}
+ | ^^^^^^^^^^^^^ `&self` used in impl
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0185`.