granite-rust/src/test/ui/variance/variance-use-contravariant-struct-1.rs

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

21 lines
472 B
Rust
Raw Normal View History

// Test various uses of structs with distint variances to make sure
// they permit lifetimes to be approximated as expected.
2022-04-01 22:12:17 -04:00
// revisions: base nll
// ignore-compare-mode-nll
//[nll] compile-flags: -Z borrowck=mir
struct SomeStruct<T>(fn(T));
fn foo<'min,'max>(v: SomeStruct<&'max ()>)
-> SomeStruct<&'min ()>
where 'max : 'min
{
2022-04-01 22:12:17 -04:00
v
//[base]~^ ERROR mismatched types
//[nll]~^^ ERROR lifetime may not live long enough
}
fn main() { }