2020-01-09 04:56:38 -06:00
|
|
|
#![feature(negative_impls)]
|
2014-01-22 13:03:02 -06:00
|
|
|
|
2015-01-11 06:14:39 -06:00
|
|
|
use std::marker::Sync;
|
|
|
|
|
|
|
|
struct Foo { a: isize }
|
|
|
|
impl !Sync for Foo {}
|
2013-05-05 14:55:32 -05:00
|
|
|
|
2014-08-05 18:40:04 -05:00
|
|
|
fn bar<T: Sync>(_: T) {}
|
2013-05-05 14:55:32 -05:00
|
|
|
|
|
|
|
fn main() {
|
2015-01-11 06:14:39 -06:00
|
|
|
let x = Foo { a: 5 };
|
2014-02-05 16:33:10 -06:00
|
|
|
bar(x);
|
2018-02-10 23:01:49 -06:00
|
|
|
//~^ ERROR `Foo` cannot be shared between threads safely [E0277]
|
2013-05-05 14:55:32 -05:00
|
|
|
}
|