2017-10-15 15:43:06 -05:00
|
|
|
#![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-26 06:28:02 -05:00
|
|
|
Box::new(())
|
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-26 06:28:02 -05:00
|
|
|
Box::new(())
|
2017-10-15 15:43:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|