]> git.proxmox.com Git - rustc.git/blame - src/test/ui/unconstrained-ref.stderr
New upstream version 1.63.0+dfsg1
[rustc.git] / src / test / ui / unconstrained-ref.stderr
CommitLineData
ff7c6d11 1error[E0282]: type annotations needed
0731742a 2 --> $DIR/unconstrained-ref.rs:6:5
ff7c6d11 3 |
532ac7d7 4LL | S { o: &None };
923072b8
FG
5 | ^^^^^^^^^^^^^^ cannot infer type of the type parameter `T` declared on the struct `S`
6 |
7help: consider specifying the generic argument
8 |
9LL | S::<T> { o: &None };
10 | +++++
ff7c6d11
XL
11
12error: aborting due to previous error
13
0531ce1d 14For more information about this error, try `rustc --explain E0282`.