]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/regions-close-over-type-parameter-1.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / regions-close-over-type-parameter-1.rs
1 // Copyright 2014 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
11 #![feature(box_syntax)]
12
13 // Test for what happens when a type parameter `A` is closed over into
14 // an object. This should yield errors unless `A` (and the object)
15 // both have suitable bounds.
16
17 trait SomeTrait { fn get(&self) -> isize; }
18
19 fn make_object1<A:SomeTrait>(v: A) -> Box<SomeTrait+'static> {
20     box v as Box<SomeTrait+'static>
21         //~^ ERROR the parameter type `A` may not live long enough
22 }
23
24 fn make_object2<'a,A:SomeTrait+'a>(v: A) -> Box<SomeTrait+'a> {
25     box v as Box<SomeTrait+'a>
26 }
27
28 fn make_object3<'a,'b,A:SomeTrait+'a>(v: A) -> Box<SomeTrait+'b> {
29     box v as Box<SomeTrait+'b>
30         //~^ ERROR the parameter type `A` may not live long enough
31 }
32
33 fn main() { }