summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/missing-trait-item.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/missing-trait-item.stderr')
-rw-r--r--src/test/ui/suggestions/missing-trait-item.stderr25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/ui/suggestions/missing-trait-item.stderr b/src/test/ui/suggestions/missing-trait-item.stderr
deleted file mode 100644
index 4a9d7b472..000000000
--- a/src/test/ui/suggestions/missing-trait-item.stderr
+++ /dev/null
@@ -1,25 +0,0 @@
-error[E0046]: not all trait items implemented, missing: `foo`, `bar`
- --> $DIR/missing-trait-item.rs:10:5
- |
-LL | unsafe fn foo(a: &usize, b: &usize) -> usize;
- | --------------------------------------------- `foo` from trait
-LL | fn bar(&self, a: &usize, b: &usize) -> usize;
- | --------------------------------------------- `bar` from trait
-...
-LL | impl T for () {}
- | ^^^^^^^^^^^^^ missing `foo`, `bar` in implementation
-
-error[E0046]: not all trait items implemented, missing: `foo`, `bar`
- --> $DIR/missing-trait-item.rs:12:5
- |
-LL | unsafe fn foo(a: &usize, b: &usize) -> usize;
- | --------------------------------------------- `foo` from trait
-LL | fn bar(&self, a: &usize, b: &usize) -> usize;
- | --------------------------------------------- `bar` from trait
-...
-LL | impl T for usize {
- | ^^^^^^^^^^^^^^^^ missing `foo`, `bar` in implementation
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0046`.