2017-02-28 19:05:03 +00: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.
|
|
|
|
|
2018-07-22 03:59:44 +00:00
|
|
|
// compile-flags: --edition 2018
|
|
|
|
|
2017-02-28 19:05:03 +00:00
|
|
|
#![feature(catch_expr)]
|
|
|
|
|
2018-07-22 03:59:44 +00:00
|
|
|
// This test checks that borrows made and returned inside try blocks are properly constrained
|
2017-02-28 19:05:03 +00:00
|
|
|
pub fn main() {
|
2017-03-14 23:48:01 +00:00
|
|
|
{
|
2018-07-22 03:59:44 +00:00
|
|
|
// Test that borrows returned from a try block must be valid for the lifetime of the
|
2017-03-14 23:48:01 +00:00
|
|
|
// result variable
|
2018-07-22 03:59:44 +00:00
|
|
|
let _result: Result<(), &str> = try {
|
2017-03-14 23:48:01 +00:00
|
|
|
let my_string = String::from("");
|
|
|
|
let my_str: & str = & my_string;
|
2017-12-14 17:57:34 +00:00
|
|
|
//~^ ERROR `my_string` does not live long enough
|
2017-03-14 23:48:01 +00:00
|
|
|
Err(my_str) ?;
|
|
|
|
Err("") ?;
|
2017-12-14 17:57:34 +00:00
|
|
|
};
|
2017-03-14 23:48:01 +00:00
|
|
|
}
|
2017-02-28 19:05:03 +00:00
|
|
|
|
2017-03-14 23:48:01 +00:00
|
|
|
{
|
2018-07-22 03:59:44 +00:00
|
|
|
// Test that borrows returned from try blocks freeze their referent
|
2017-03-14 23:48:01 +00:00
|
|
|
let mut i = 5;
|
|
|
|
let k = &mut i;
|
2018-07-22 03:59:44 +00:00
|
|
|
let mut j: Result<(), &mut i32> = try {
|
2017-03-14 23:48:01 +00:00
|
|
|
Err(k) ?;
|
|
|
|
i = 10; //~ ERROR cannot assign to `i` because it is borrowed
|
|
|
|
};
|
|
|
|
::std::mem::drop(k); //~ ERROR use of moved value: `k`
|
|
|
|
i = 40; //~ ERROR cannot assign to `i` because it is borrowed
|
2017-02-28 19:05:03 +00:00
|
|
|
|
2017-03-14 23:48:01 +00:00
|
|
|
let i_ptr = if let Err(i_ptr) = j { i_ptr } else { panic ! ("") };
|
|
|
|
*i_ptr = 50;
|
|
|
|
}
|
2017-02-28 19:05:03 +00:00
|
|
|
}
|
|
|
|
|