rust/tests/ui/impl-trait/variance.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
697 B
Rust
Raw Normal View History

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