]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-17718-static-sync.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-17718-static-sync.stderr
CommitLineData
8faf50e0 1error[E0277]: `Foo` cannot be shared between threads safely
0731742a 2 --> $DIR/issue-17718-static-sync.rs:9:1
8faf50e0
XL
3 |
4LL | static BAR: Foo = Foo;
5 | ^^^^^^^^^^^^^^^^^^^^^^ `Foo` cannot be shared between threads safely
6 |
1b1a35ee 7 = help: the trait `Sync` is not implemented for `Foo`
8faf50e0
XL
8 = note: shared static variables must have a type that implements `Sync`
9
10error: aborting due to previous error
11
12For more information about this error, try `rustc --explain E0277`.