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