2012-12-10 19:32:48 -06:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2013-03-12 21:32:14 -05:00
|
|
|
trait repeat<A> { fn get(&self) -> A; }
|
2012-07-18 13:01:54 -05:00
|
|
|
|
2013-02-14 13:47:00 -06:00
|
|
|
impl<A:Copy> repeat<A> for @A {
|
2013-03-13 19:57:30 -05:00
|
|
|
fn get(&self) -> A { **self }
|
2012-07-18 13:01:54 -05:00
|
|
|
}
|
|
|
|
|
2013-03-12 15:00:50 -05:00
|
|
|
fn repeater<A:Copy>(v: @A) -> @repeat<A> {
|
2012-07-31 12:27:51 -05:00
|
|
|
// Note: owned kind is not necessary as A appears in the trait type
|
2013-03-13 19:57:30 -05:00
|
|
|
@v as @repeat<A> // No
|
2012-07-18 13:01:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2013-01-22 19:20:08 -06:00
|
|
|
// Error results because the type of is inferred to be
|
2013-03-14 13:22:51 -05:00
|
|
|
// @repeat<&'blk int> where blk is the lifetime of the block below.
|
2013-01-22 19:20:08 -06:00
|
|
|
|
|
|
|
let y = { //~ ERROR reference is not valid
|
2013-03-14 13:22:51 -05:00
|
|
|
let x: &'blk int = &3;
|
2012-07-18 13:01:54 -05:00
|
|
|
repeater(@x)
|
|
|
|
};
|
2013-04-02 00:32:37 -05:00
|
|
|
assert!(3 == *(y.get())); //~ ERROR dereference of reference outside its lifetime
|
|
|
|
//~^ ERROR reference is not valid outside of its lifetime
|
2013-03-15 14:24:24 -05:00
|
|
|
//~^^ ERROR reference is not valid outside of its lifetime
|
|
|
|
//~^^^ ERROR reference is not valid outside of its lifetime
|
|
|
|
//~^^^^ ERROR cannot infer an appropriate lifetime
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|