rust/tests/fail/sync/libc_pthread_rwlock_unlock_unlocked.rs

13 lines
275 B
Rust

//@ignore-target-windows: No libc on Windows
#![feature(rustc_private)]
extern crate libc;
fn main() {
let rw = std::cell::UnsafeCell::new(libc::PTHREAD_RWLOCK_INITIALIZER);
unsafe {
libc::pthread_rwlock_unlock(rw.get()); //~ ERROR: was not locked
}
}