]> git.lizzy.rs Git - rust.git/blob - tests/ui/statics/issue-17718-static-sync.stderr
Rollup merge of #106397 - compiler-errors:new-solver-impl-wc, r=lcnr
[rust.git] / tests / ui / statics / issue-17718-static-sync.stderr
1 error[E0277]: `Foo` cannot be shared between threads safely
2   --> $DIR/issue-17718-static-sync.rs:9:13
3    |
4 LL | static BAR: Foo = Foo;
5    |             ^^^ `Foo` cannot be shared between threads safely
6    |
7    = help: the trait `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`.