2022-04-28 08:25:36 -05:00
|
|
|
error[E0282]: type annotations needed
|
2022-02-14 06:25:26 -06:00
|
|
|
--> $DIR/fallback_inference.rs:4:5
|
2022-04-28 08:25:36 -05:00
|
|
|
|
|
2022-02-14 06:25:26 -06: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 08:25:36 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|