rust/tests/ui/cleanup-shortcircuit.rs

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

25 lines
684 B
Rust
Raw Normal View History

// run-pass
2014-08-01 23:42:13 +00:00
// Test that cleanups for the RHS of shortcircuiting operators work.
// pretty-expanded FIXME #23616
2021-04-07 17:23:17 +00:00
#![allow(deref_nullptr)]
use std::env;
pub fn main() {
let args: Vec<String> = env::args().collect();
2014-05-25 10:10:11 +00:00
// Here, the rvalue `"signal".to_string()` requires cleanup. Older versions
// of the code had a problem that the cleanup scope for this
2014-05-25 10:10:11 +00:00
// expression was the end of the `if`, and as the `"signal".to_string()`
// expression was never evaluated, we wound up trying to clean
// uninitialized memory.
if args.len() >= 2 && args[1] == "signal" {
// Raise a segfault.
unsafe { *std::ptr::null_mut::<isize>() = 0; }
}
}