blob: 4fc028550914943daa6154ec4b1ad5446daf8315 [file] [log] [blame]
error[E0283]: type annotations needed
--> $DIR/issue-40294.rs:5:1
|
LL | trait Foo: Sized {
| ---------------- required by `Foo`
...
LL | / fn foo<'a,'b,T>(x: &'a T, y: &'b T)
LL | | where &'a T : Foo,
LL | | &'b T : Foo
LL | | {
LL | | x.foo();
LL | | y.foo();
LL | | }
| |_^ cannot infer type for reference `&'a T`
|
= note: cannot resolve `&'a T: Foo`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0283`.