2019-06-01 21:47:15 +00:00
|
|
|
error[E0282]: type annotations needed for `B<T>`
|
2022-02-14 12:25:26 +00:00
|
|
|
--> $DIR/issue-17551.rs:6:9
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let foo = B(marker::PhantomData);
|
2023-08-14 13:09:53 +00:00
|
|
|
| ^^^ ------------------- type must be known at this point
|
2022-02-14 12:25:26 +00:00
|
|
|
|
|
|
|
|
help: consider giving `foo` an explicit type, where the type for type parameter `T` is specified
|
|
|
|
|
|
|
|
|
LL | let foo: B<T> = B(marker::PhantomData);
|
|
|
|
| ++++++
|
2018-07-15 21:11:54 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-07-15 21:11:54 +00:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0282`.
|