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.
|
|
|
|
|
2012-07-31 12:27:51 -05:00
|
|
|
trait repeat<A> { fn get() -> A; }
|
2012-07-18 13:01:54 -05:00
|
|
|
|
2012-09-07 16:52:28 -05:00
|
|
|
impl<A:Copy> @A: repeat<A> {
|
2012-07-18 13:01:54 -05:00
|
|
|
fn get() -> A { *self }
|
|
|
|
}
|
|
|
|
|
2012-09-07 16:52:28 -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
|
2012-07-18 13:01:54 -05:00
|
|
|
v as repeat::<A> // No
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2013-01-22 19:20:08 -06:00
|
|
|
// Error results because the type of is inferred to be
|
|
|
|
// repeat<&blk/int> where blk is the lifetime of the block below.
|
|
|
|
|
|
|
|
let y = { //~ ERROR reference is not valid
|
|
|
|
let x: &blk/int = &3;
|
2012-07-18 13:01:54 -05:00
|
|
|
repeater(@x)
|
|
|
|
};
|
2013-01-22 19:20:08 -06:00
|
|
|
assert 3 == *(y.get()); //~ ERROR reference is not valid
|
2012-07-18 13:01:54 -05:00
|
|
|
}
|