]> git.proxmox.com Git - rustc.git/blob - src/test/ui/suggestions/missing-trait-bounds-for-method-call.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / suggestions / missing-trait-bounds-for-method-call.stderr
1 error[E0599]: no method named `foo` found for reference `&Foo<T>` in the current scope
2 --> $DIR/missing-trait-bounds-for-method-call.rs:14:14
3 |
4 LL | struct Foo<T> {
5 | ------------- doesn't satisfy `Foo<T>: Bar`
6 ...
7 LL | self.foo();
8 | ^^^ method not found in `&Foo<T>`
9 |
10 = note: the method `foo` exists but the following trait bounds were not satisfied:
11 `T: Bar`
12 which is required by `Foo<T>: Bar`
13 `T: std::default::Default`
14 which is required by `Foo<T>: Bar`
15 help: consider restricting the type parameters to satisfy the trait bounds
16 |
17 LL | struct Foo<T> where T: Bar, T: std::default::Default {
18 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
19
20 error[E0599]: no method named `foo` found for reference `&Fin<T>` in the current scope
21 --> $DIR/missing-trait-bounds-for-method-call.rs:27:14
22 |
23 LL | struct Fin<T> where T: Bar {
24 | -------------------------- doesn't satisfy `Fin<T>: Bar`
25 ...
26 LL | self.foo();
27 | ^^^ method not found in `&Fin<T>`
28 |
29 = note: the method `foo` exists but the following trait bounds were not satisfied:
30 `T: std::default::Default`
31 which is required by `Fin<T>: Bar`
32 help: consider restricting the type parameter to satisfy the trait bound
33 |
34 LL | struct Fin<T> where T: Bar, T: std::default::Default {
35 | ^^^^^^^^^^^^^^^^^^^^^^^^^^
36
37 error: aborting due to 2 previous errors
38
39 For more information about this error, try `rustc --explain E0599`.