2021-12-06 15:15:02 -06: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);
|
2022-05-30 07:17:36 -05:00
|
|
|
//~^ ERROR Undefined Behavior: using uninitialized data, but this operation requires initialized memory
|
2021-12-06 15:15:02 -06:00
|
|
|
}
|
|
|
|
}
|