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
|
2018-01-02 14:11:41 +01:00
|
|
|
// ignore-cloudabi no std::env support
|
2015-03-22 13:13:15 -07:00
|
|
|
|
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.
|
2015-03-25 17:06:52 -07:00
|
|
|
unsafe { *(0 as *mut isize) = 0; }
|
2014-01-15 14:39:08 -05:00
|
|
|
}
|
|
|
|
}
|