rust/src/test/compile-fail/borrowck/borrowck-local-borrow-with-panic-outlives-fn.rs

24 lines
817 B
Rust
Raw Normal View History

2017-11-29 16:39:01 -06:00
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// revisions: ast mir
//[mir]compile-flags: -Z borrowck=mir
fn cplusplus_mode_exceptionally_unsafe(x: &mut Option<&'static mut isize>) {
let mut z = (0, 0);
*x = Some(&mut z.1); //[ast]~ ERROR [E0597]
panic!("catch me for a dangling pointer!")
}
2017-12-03 09:55:41 -06:00
//[mir]~^ ERROR [E0597]
2017-11-29 16:39:01 -06:00
fn main() {
cplusplus_mode_exceptionally_unsafe(&mut None);
}