summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/in-trait/suggest-missing-item.stderr
blob: 44f98896eb3842c5128c1690dfb2005f23aac98d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0046]: not all trait items implemented, missing: `foo`, `bar`, `test`, `baz`
  --> $DIR/suggest-missing-item.rs:18:1
   |
LL |     async fn foo();
   |     --------------- `foo` from trait
LL |
LL |     async fn bar() -> i32;
   |     ---------------------- `bar` from trait
LL |
LL |     fn test(&self) -> impl Sized + '_;
   |     ---------------------------------- `test` from trait
LL |
LL |     async fn baz(&self) -> &i32;
   |     ---------------------------- `baz` from trait
...
LL | impl Trait for S {}
   | ^^^^^^^^^^^^^^^^ missing `foo`, `bar`, `test`, `baz` in implementation

error: aborting due to previous error

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