rust/tests/fail/sync/libc_pthread_rwlock_double_destroy.rs

17 lines
485 B
Rust
Raw Normal View History

2022-07-08 11:08:32 -05:00
//@ignore-windows: No libc on Windows
#![feature(rustc_private)]
/// Test that destroying a pthread_rwlock twice fails, even without a check for number validity
extern crate libc;
fn main() {
unsafe {
let mut lock = libc::PTHREAD_RWLOCK_INITIALIZER;
libc::pthread_rwlock_destroy(&mut lock);
libc::pthread_rwlock_destroy(&mut lock);
//~^ ERROR: Undefined Behavior: using uninitialized data, but this operation requires initialized memory
}
}