summary refs log tree commit diff
path: root/src/test/ui/specialization/defaultimpl/specialization-trait-item-not-implemented.stderr
blob: b862a937066d4f2659f86af1b4a3f35212c7aea5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0046]: not all trait items implemented, missing: `foo_two`
  --> $DIR/specialization-trait-item-not-implemented.rs:18:1
   |
LL |     fn foo_two(&self) -> &'static str;
   |     ---------------------------------- `foo_two` from trait
...
LL | impl Foo for MyStruct {}
   | ^^^^^^^^^^^^^^^^^^^^^ missing `foo_two` in implementation

error: aborting due to previous error

For more information about this error, try `rustc --explain E0046`.