rust/tests/ui/traits/negative-impls/negated-auto-traits-rpass.rs

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

22 lines
445 B
Rust
Raw Normal View History

// run-pass
#![allow(unused_variables)]
#![feature(negative_impls)]
2015-01-11 14:51:52 +00:00
use std::marker::Send;
pub struct WaitToken;
impl !Send for WaitToken {}
2022-07-25 20:36:03 +00:00
pub struct Test<T>(#[allow(unused_tuple_struct_fields)] T);
2015-01-11 14:51:52 +00:00
unsafe impl<T: 'static> Send for Test<T> {}
pub fn spawn<F>(_: F) -> () where F: FnOnce(), F: Send + 'static {}
fn main() {
let wt = Test(WaitToken);
spawn(move || {
let x = wt;
println!("Hello, World!");
});
}