2014-10-16 17:58:07 -05:00
|
|
|
// 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)]
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
trait Foo {}
|
|
|
|
impl<'a> Foo for &'a [u8] {}
|
|
|
|
|
|
|
|
fn a(v: &[u8]) -> Box<Foo + 'static> {
|
2014-12-07 10:10:48 -06:00
|
|
|
let x: Box<Foo + 'static> = box v; //~ ERROR declared lifetime bound not satisfied
|
2014-10-16 17:58:07 -05:00
|
|
|
x
|
|
|
|
}
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
fn b(v: &[u8]) -> Box<Foo + 'static> {
|
2014-12-07 10:10:48 -06:00
|
|
|
box v //~ ERROR declared lifetime bound not satisfied
|
2014-10-16 17:58:07 -05:00
|
|
|
}
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
fn c(v: &[u8]) -> Box<Foo> {
|
2014-10-16 17:58:07 -05:00
|
|
|
box v // OK thanks to lifetime elision
|
|
|
|
}
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
fn d<'a,'b>(v: &'a [u8]) -> Box<Foo+'b> {
|
2014-12-07 10:10:48 -06:00
|
|
|
box v //~ ERROR declared lifetime bound not satisfied
|
2014-10-16 17:58:07 -05:00
|
|
|
}
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
fn e<'a:'b,'b>(v: &'a [u8]) -> Box<Foo+'b> {
|
2014-10-16 17:58:07 -05:00
|
|
|
box v // OK, thanks to 'a:'b
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|