rust/src/test/compile-fail/region-object-lifetime-in-coercion.rs

43 lines
1.2 KiB
Rust
Raw Normal View History

// Copyright 2014 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.
// Test that attempts to implicitly coerce a value into an
// object respect the lifetime bound on the object type.
2015-01-07 20:53:58 -06:00
#![feature(box_syntax)]
trait Foo : ::std::marker::MarkerTrait {}
2014-10-21 22:53:03 -05:00
impl<'a> Foo for &'a [u8] {}
fn a(v: &[u8]) -> Box<Foo + 'static> {
2015-02-16 10:58:47 -06:00
let x: Box<Foo + 'static> = box v; //~ ERROR does not fulfill the required lifetime
x
}
2014-10-21 22:53:03 -05:00
fn b(v: &[u8]) -> Box<Foo + 'static> {
2015-02-16 10:58:47 -06:00
box v //~ ERROR does not fulfill the required lifetime
}
2014-10-21 22:53:03 -05:00
fn c(v: &[u8]) -> Box<Foo> {
// same as previous case due to RFC 599
2015-02-16 10:58:47 -06:00
box v //~ ERROR does not fulfill the required lifetime
}
2014-10-21 22:53:03 -05:00
fn d<'a,'b>(v: &'a [u8]) -> Box<Foo+'b> {
2015-02-16 10:58:47 -06:00
box v //~ ERROR does not fulfill the required lifetime
}
2014-10-21 22:53:03 -05:00
fn e<'a:'b,'b>(v: &'a [u8]) -> Box<Foo+'b> {
box v // OK, thanks to 'a:'b
}
fn main() { }