]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/issue-23338-locals-die-before-temps-of-body.rs
New upstream version 1.13.0+dfsg1
[rustc.git] / src / test / compile-fail / issue-23338-locals-die-before-temps-of-body.rs
CommitLineData
9346a6ac
AL
1// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
11// This is just checking that we still reject code where temp values
12// are borrowing values for longer than they will be around.
13//
14// Compare to run-pass/issue-23338-params-outlive-temps-of-body.rs
15
16use std::cell::RefCell;
17
18fn foo(x: RefCell<String>) -> String {
19 let y = x;
20 y.borrow().clone() //~ ERROR `y` does not live long enough
21}
22
23fn foo2(x: RefCell<String>) -> String {
24 let ret = {
25 let y = x;
26 y.borrow().clone() //~ ERROR `y` does not live long enough
27 };
28 ret
29}
30
31fn main() {
32 let r = RefCell::new(format!("data"));
33 assert_eq!(foo(r), "data");
34 let r = RefCell::new(format!("data"));
35 assert_eq!(foo2(r), "data");
36}