summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/trivial_impl3.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/trivial_impl3.stderr')
-rw-r--r--tests/ui/traits/trivial_impl3.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/traits/trivial_impl3.stderr b/tests/ui/traits/trivial_impl3.stderr
new file mode 100644
index 000000000..dfb39d6ce
--- /dev/null
+++ b/tests/ui/traits/trivial_impl3.stderr
@@ -0,0 +1,14 @@
+error[E0046]: not all trait items implemented, missing: `foo`
+ --> $DIR/trivial_impl3.rs:16:1
+ |
+LL | / fn foo()
+LL | | where
+LL | | Self: trivial3::Trait;
+ | |______________________________- `foo` from trait
+...
+LL | impl Foo for u8 {}
+ | ^^^^^^^^^^^^^^^ missing `foo` in implementation
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0046`.