rust/tests/fail/shims/sync/libc_pthread_rwlock_double_destroy.rs
2022-08-17 22:02:20 -04:00

15 lines
446 B
Rust

//@ignore-target-windows: No libc on Windows
/// Test that destroying a pthread_rwlock twice fails, even without a check for number validity
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
}
}