2016-10-03 15:00:09 -05:00
|
|
|
// 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 <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.
|
|
|
|
|
|
|
|
#![allow(dead_code)]
|
2016-10-12 15:38:58 -05:00
|
|
|
#![deny(extra_requirement_in_impl)]
|
2016-10-03 15:00:09 -05:00
|
|
|
|
|
|
|
// Test that we elaborate `Type: 'region` constraints and infer various important things.
|
|
|
|
|
2016-10-05 09:17:14 -05:00
|
|
|
trait Master<'a, 'b> {
|
|
|
|
fn foo();
|
2016-10-03 15:00:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// `U: 'a` does not imply `V: 'a`
|
2016-10-05 09:17:14 -05:00
|
|
|
impl<'a, 'b> Master<'a, 'b> for () {
|
|
|
|
fn foo() where 'a: 'b { }
|
2016-10-03 15:00:09 -05:00
|
|
|
//~^ ERROR parameter type `V` may not live long enough
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("Hello, world!");
|
|
|
|
}
|