2017-10-15 15:43:06 -05:00
|
|
|
// Copyright 2017 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(warnings)]
|
|
|
|
|
|
|
|
trait Id<T> {}
|
|
|
|
trait Lt<'a> {}
|
|
|
|
|
|
|
|
impl<'a> Lt<'a> for () {}
|
|
|
|
impl<T> Id<T> for T {}
|
|
|
|
|
|
|
|
fn free_fn_capture_hrtb_in_impl_trait()
|
2018-02-08 17:40:27 -06:00
|
|
|
-> Box<for<'a> Id<impl Lt<'a>>>
|
2017-10-15 15:43:06 -05:00
|
|
|
//~^ ERROR `impl Trait` can only capture lifetimes bound at the fn or impl level [E0657]
|
|
|
|
{
|
2018-06-21 14:26:44 -05:00
|
|
|
() //~ ERROR mismatched types
|
2017-10-15 15:43:06 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
struct Foo;
|
|
|
|
impl Foo {
|
|
|
|
fn impl_fn_capture_hrtb_in_impl_trait()
|
2018-02-08 17:40:27 -06:00
|
|
|
-> Box<for<'a> Id<impl Lt<'a>>>
|
2017-10-15 15:43:06 -05:00
|
|
|
//~^ ERROR `impl Trait` can only capture lifetimes bound at the fn or impl level
|
|
|
|
{
|
2018-06-21 14:26:44 -05:00
|
|
|
() //~ ERROR mismatched types
|
2017-10-15 15:43:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|