summary refs log tree commit diff
path: root/src/test/ui/specialization/defaultimpl/specialization-trait-item-not-implemented.stderr
blob: c3c2a9840ad5ce72ef38383fb5b3c94c9f5aa3d9 (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:28: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`.