rust/tests/ui/no_share-enum.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
270 B
Rust
Raw Normal View History

#![feature(negative_impls)]
2015-01-11 20:14:39 +08:00
use std::marker::Sync;
struct NoSync;
impl !Sync for NoSync {}
enum Foo { A(NoSync) }
fn bar<T: Sync>(_: T) {}
fn main() {
2015-01-11 20:14:39 +08:00
let x = Foo::A(NoSync);
2014-02-06 06:33:10 +08:00
bar(x);
//~^ ERROR `NoSync` cannot be shared between threads safely [E0277]
}