]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/regions-infer-contravariance-due-to-ret.rs
Imported Upstream version 1.0.0~beta.3
[rustc.git] / src / test / run-pass / regions-infer-contravariance-due-to-ret.rs
CommitLineData
223e47cc
LB
1// Copyright 2012 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
c34b1796 11
1a4d82fc 12struct boxed_int<'a> {
c34b1796 13 f: &'a isize,
223e47cc
LB
14}
15
c34b1796 16fn max<'r>(bi: &'r boxed_int, f: &'r isize) -> isize {
223e47cc
LB
17 if *bi.f > *f {*bi.f} else {*f}
18}
19
c34b1796 20fn with(bi: &boxed_int) -> isize {
223e47cc
LB
21 let i = 22;
22 max(bi, &i)
23}
24
25pub fn main() {
26 let g = 21;
27 let foo = boxed_int { f: &g };
970d7e83 28 assert_eq!(with(&foo), 22);
223e47cc 29}