blob: 2835e47fa4515f73e615a404029026115021240f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0308]: mismatched types
--> $DIR/rfc1623.rs:24:8
|
LL | f: &id,
| ^^^ one type is more general than the other
|
= note: expected type `FnOnce<(&'a Foo<'b>,)>`
found type `FnOnce<(&Foo<'_>,)>`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|