]> git.proxmox.com Git - rustc.git/blame - src/test/ui/traits/bad-method-typaram-kind.stderr
New upstream version 1.56.0~beta.4+dfsg1
[rustc.git] / src / test / ui / traits / bad-method-typaram-kind.stderr
CommitLineData
b7449926 1error[E0277]: `T` cannot be sent between threads safely
0731742a 2 --> $DIR/bad-method-typaram-kind.rs:2:7
b7449926 3 |
532ac7d7 4LL | 1.bar::<T>();
b7449926
XL
5 | ^^^ `T` cannot be sent between threads safely
6 |
ba9703b0 7help: consider further restricting this bound
74b04a01 8 |
cdc7bbd5 9LL | fn foo<T:'static + std::marker::Send>() {
94222f64 10 | +++++++++++++++++++
b7449926
XL
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0277`.