// Copyright 2016 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // compile-flags:-Znll -Zborrowck=mir #![allow(warnings)] #![feature(dyn_trait)] use std::fmt::Debug; fn no_region<'a, T>(x: Box) -> Box where T: Debug, { x //~^ WARNING not reporting region error due to -Znll //~| ERROR `T` does not outlive } fn correct_region<'a, T>(x: Box) -> Box where T: 'a + Debug, { x } fn wrong_region<'a, 'b, T>(x: Box) -> Box where T: 'b + Debug, { x //~^ WARNING not reporting region error due to -Znll //~| ERROR `T` does not outlive } fn outlives_region<'a, 'b, T>(x: Box) -> Box where T: 'b + Debug, 'b: 'a, { x } fn main() {}