rust/tests/ui/type-inference/unbounded-associated-type.s...

15 lines
506 B
Plaintext

error[E0282]: type annotations needed
--> $DIR/unbounded-associated-type.rs:15:7
|
LL | S(std::marker::PhantomData).foo();
| ^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the struct `PhantomData`
|
help: consider specifying the generic argument
|
LL | S(std::marker::PhantomData::<T>).foo();
| +++++
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0282`.