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