]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-17551.stderr
Rollup merge of #101175 - tmandry:curse-push-hook, r=jyn514
[rust.git] / src / test / ui / issues / issue-17551.stderr
1 error[E0282]: type annotations needed for `B<T>`
2   --> $DIR/issue-17551.rs:6:9
3    |
4 LL |     let foo = B(marker::PhantomData);
5    |         ^^^
6    |
7 help: consider giving `foo` an explicit type, where the type for type parameter `T` is specified
8    |
9 LL |     let foo: B<T> = B(marker::PhantomData);
10    |            ++++++
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0282`.