mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
18 lines
363 B
Rust
18 lines
363 B
Rust
// Test various uses of structs with distinct variances to make sure
|
|
// they permit lifetimes to be approximated as expected.
|
|
|
|
#![allow(dead_code)]
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
struct SomeStruct<T>(fn(T));
|
|
|
|
fn bar<'min,'max>(v: SomeStruct<&'min ()>)
|
|
-> SomeStruct<&'max ()>
|
|
where 'max : 'min
|
|
{
|
|
v
|
|
}
|
|
|
|
|
|
fn main() { }
|