os-rust/tests/ui/variance/variance-use-invariant-struct-1.rs

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

24 lines
507 B
Rust
Raw Normal View History

// Test various uses of structs with distinct variances to make sure
// they permit lifetimes to be approximated as expected.
struct SomeStruct<T>(*mut T);
fn foo<'min,'max>(v: SomeStruct<&'max ()>)
-> SomeStruct<&'min ()>
where 'max : 'min
{
2022-04-01 22:12:17 -04:00
v
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
}
fn bar<'min,'max>(v: SomeStruct<&'min ()>)
-> SomeStruct<&'max ()>
where 'max : 'min
{
2022-04-01 22:12:17 -04:00
v
2022-04-01 13:13:25 -04:00
//~^ ERROR lifetime may not live long enough
}
fn main() { }