2023-11-07 00:07:57 +00:00
|
|
|
//@ revisions: old new e2024
|
|
|
|
//@[e2024] edition: 2024
|
|
|
|
//@[e2024] compile-flags: -Z unstable-options
|
2023-10-19 19:00:18 +00:00
|
|
|
|
|
|
|
#![cfg_attr(new, feature(lifetime_capture_rules_2024))]
|
|
|
|
|
2023-08-08 19:59:44 +00:00
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#![allow(internal_features)]
|
|
|
|
#![rustc_variance_of_opaques]
|
|
|
|
|
|
|
|
trait Captures<'a> {}
|
|
|
|
impl<T> Captures<'_> for T {}
|
|
|
|
|
2023-10-19 19:00:18 +00:00
|
|
|
fn not_captured_early<'a: 'a>() -> impl Sized {}
|
|
|
|
//[old]~^ [*]
|
|
|
|
//[new]~^^ [*, o]
|
2023-11-07 00:07:57 +00:00
|
|
|
//[e2024]~^^^ [*, o]
|
2023-08-08 19:59:44 +00:00
|
|
|
|
|
|
|
fn captured_early<'a: 'a>() -> impl Sized + Captures<'a> {} //~ [*, o]
|
|
|
|
|
2023-10-19 19:00:18 +00:00
|
|
|
fn not_captured_late<'a>(_: &'a ()) -> impl Sized {}
|
|
|
|
//[old]~^ []
|
|
|
|
//[new]~^^ [o]
|
2023-11-07 00:07:57 +00:00
|
|
|
//[e2024]~^^^ [o]
|
2023-08-08 19:59:44 +00:00
|
|
|
|
|
|
|
fn captured_late<'a>(_: &'a ()) -> impl Sized + Captures<'a> {} //~ [o]
|
|
|
|
|
|
|
|
fn main() {}
|