2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
2014-08-01 23:42:13 +00:00
|
|
|
// Test that cleanups for the RHS of shortcircuiting operators work.
|
2014-01-15 19:39:08 +00:00
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2021-04-07 17:23:17 +00:00
|
|
|
#![allow(deref_nullptr)]
|
|
|
|
|
|
|
|
|
2015-02-16 14:04:02 +00:00
|
|
|
use std::env;
|
2014-01-15 19:39:08 +00:00
|
|
|
|
|
|
|
pub fn main() {
|
2015-02-16 14:04:02 +00:00
|
|
|
let args: Vec<String> = env::args().collect();
|
2014-01-15 19:39:08 +00:00
|
|
|
|
2014-05-25 10:10:11 +00:00
|
|
|
// Here, the rvalue `"signal".to_string()` requires cleanup. Older versions
|
2014-01-15 19:39:08 +00:00
|
|
|
// 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()`
|
2014-01-15 19:39:08 +00:00
|
|
|
// expression was never evaluated, we wound up trying to clean
|
|
|
|
// uninitialized memory.
|
|
|
|
|
2015-02-02 02:53:25 +00:00
|
|
|
if args.len() >= 2 && args[1] == "signal" {
|
2014-01-15 19:39:08 +00:00
|
|
|
// Raise a segfault.
|
2019-06-17 10:52:37 +00:00
|
|
|
unsafe { *std::ptr::null_mut::<isize>() = 0; }
|
2014-01-15 19:39:08 +00:00
|
|
|
}
|
|
|
|
}
|