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-12 21:32:14 -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-12 15:00:50 -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-12 15:00:50 -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
|
|
|
|
let x: &blk/int = &3;
|
2012-07-18 13:01:54 -05:00
|
|
|
repeater(@x)
|
|
|
|
};
|
2013-03-06 15:58:02 -06:00
|
|
|
fail_unless!(3 == *(y.get())); //~ ERROR reference is not valid
|
2013-02-14 13:47:00 -06:00
|
|
|
}
|