]> git.proxmox.com Git - rustc.git/blame - src/test/ui/type-inference/unbounded-associated-type.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / type-inference / unbounded-associated-type.stderr
CommitLineData
60c5eb7d 1error[E0282]: type annotations needed
923072b8 2 --> $DIR/unbounded-associated-type.rs:15:7
60c5eb7d 3 |
60c5eb7d 4LL | S(std::marker::PhantomData).foo();
923072b8
FG
5 | ^^^^^^^^^^^^^^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the struct `PhantomData`
6 |
7help: consider specifying the generic argument
8 |
9LL | S(std::marker::PhantomData::<T>).foo();
10 | +++++
60c5eb7d
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0282`.