mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 01:04:03 +00:00
30 lines
861 B
Rust
30 lines
861 B
Rust
//@ run-rustfix
|
|
|
|
#![feature(precise_capturing)]
|
|
#![allow(unused, incomplete_features)]
|
|
#![deny(impl_trait_overcaptures)]
|
|
|
|
fn named<'a>(x: &'a i32) -> impl Sized + use<> { *x }
|
|
//~^ ERROR `impl Sized` will capture more lifetimes than possibly intended in edition 2024
|
|
|
|
fn implicit(x: &i32) -> impl Sized + use<> { *x }
|
|
//~^ ERROR `impl Sized` will capture more lifetimes than possibly intended in edition 2024
|
|
|
|
struct W;
|
|
impl W {
|
|
fn hello(&self, x: &i32) -> impl Sized + '_ + use<'_> { self }
|
|
//~^ ERROR `impl Sized + '_` will capture more lifetimes than possibly intended in edition 2024
|
|
}
|
|
|
|
trait Higher<'a> {
|
|
type Output;
|
|
}
|
|
impl Higher<'_> for () {
|
|
type Output = ();
|
|
}
|
|
|
|
fn hrtb() -> impl for<'a> Higher<'a, Output = impl Sized + use<>> {}
|
|
//~^ ERROR `impl Sized` will capture more lifetimes than possibly intended in edition 2024
|
|
|
|
fn main() {}
|