summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/trivial_impl_sized.stderr
blob: ebf6dfc9dd2df728fded838da720c7a9d64a7993 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
error[E0046]: not all trait items implemented, missing: `foo`
  --> $DIR/trivial_impl_sized.rs:15:1
   |
LL | /     fn foo()
LL | |     where
LL | |         Self: Sized;
   | |____________________- `foo` from trait
...
LL |   impl Foo for i32 {}
   |   ^^^^^^^^^^^^^^^^ missing `foo` in implementation

error[E0046]: not all trait items implemented, missing: `foo`
  --> $DIR/trivial_impl_sized.rs:19:1
   |
LL | /     fn foo()
LL | |     where
LL | |         Self: Sized;
   | |____________________- `foo` from trait
...
LL |   impl Foo for dyn std::fmt::Debug {}
   |   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing `foo` in implementation

error: aborting due to 2 previous errors

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