]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-17718-static-sync.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-17718-static-sync.stderr
1 error[E0277]: `Foo` cannot be shared between threads safely
2   --> $DIR/issue-17718-static-sync.rs:9:1
3    |
4 LL | static BAR: Foo = Foo;
5    | ^^^^^^^^^^^^^^^^^^^^^^ `Foo` cannot be shared between threads safely
6    |
7    = help: the trait `std::marker::Sync` is not implemented for `Foo`
8    = note: shared static variables must have a type that implements `Sync`
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0277`.