]> git.proxmox.com Git - rustc.git/blob - src/test/compile-fail/struct-field-assignability.rs
Imported Upstream version 1.1.0+dfsg1
[rustc.git] / src / test / compile-fail / struct-field-assignability.rs
1 // ignore-test
2
3 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13
14 struct Foo<'a> {
15 x: &'a isize
16 }
17
18 pub fn main() {
19 let f = Foo { x: &*(box 3) }; //~ ERROR borrowed value does not live long enough
20 assert_eq!(*f.x, 3);
21 }