2022-04-28 13:25:36 +00:00
|
|
|
error[E0282]: type annotations needed
|
2022-02-14 13:25:26 +01:00
|
|
|
--> $DIR/fallback_inference.rs:4:5
|
2022-04-28 13:25:36 +00:00
|
|
|
|
|
2022-02-14 13:25:26 +01:00
|
|
|
LL | PhantomData
|
|
|
|
| ^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the struct `PhantomData`
|
|
|
|
|
|
|
|
|
help: consider specifying the generic argument
|
|
|
|
|
|
|
|
|
LL | PhantomData::<T>
|
|
|
|
| +++++
|
2022-04-28 13:25:36 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|