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-02-12 09:29:52 -06:00
|
|
|
trait Foo : ::std::marker::MarkerTrait {}
|
2014-10-21 22:53:03 -05:00
|
|
|
impl<'a> Foo for &'a [u8] {}
|
|
|
|
|
2015-02-15 02:52:21 -06:00
|
|
|
// FIXME (#22405): Replace `Box::new` with `box` here when/if possible.
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
fn a(v: &[u8]) -> Box<Foo + 'static> {
|
2015-02-15 02:52:21 -06:00
|
|
|
let x: Box<Foo + 'static> = Box::new(v);
|
|
|
|
//~^ ERROR cannot infer an appropriate lifetime due to conflicting
|
2014-10-16 17:58:07 -05:00
|
|
|
x
|
|
|
|
}
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
fn b(v: &[u8]) -> Box<Foo + 'static> {
|
2015-02-15 02:52:21 -06:00
|
|
|
Box::new(v)
|
|
|
|
//~^ ERROR cannot infer an appropriate lifetime due to conflicting
|
2014-10-16 17:58:07 -05:00
|
|
|
}
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
fn c(v: &[u8]) -> Box<Foo> {
|
2015-02-12 08:37:52 -06:00
|
|
|
// same as previous case due to RFC 599
|
|
|
|
|
2015-02-15 02:52:21 -06:00
|
|
|
Box::new(v)
|
|
|
|
//~^ ERROR cannot infer an appropriate lifetime due to conflicting
|
2014-10-16 17:58:07 -05:00
|
|
|
}
|
|
|
|
|
2014-10-21 22:53:03 -05:00
|
|
|
fn d<'a,'b>(v: &'a [u8]) -> Box<Foo+'b> {
|
2015-02-15 02:52:21 -06:00
|
|
|
Box::new(v)
|
|
|
|
//~^ ERROR cannot infer an appropriate lifetime due to conflicting
|
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> {
|
2015-02-15 02:52:21 -06:00
|
|
|
Box::new(v) // OK, thanks to 'a:'b
|
2014-10-16 17:58:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() { }
|