rust/tests/ui/issues/issue-17551.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
490 B
Plaintext
Raw Normal View History

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);
| ^^^ ------------------- 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
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`.