mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
318 B
Rust
16 lines
318 B
Rust
struct Invariant<'a> {
|
|
f: Box<dyn FnOnce(&mut &'a isize) + 'static>,
|
|
}
|
|
|
|
fn to_same_lifetime<'r>(b_isize: Invariant<'r>) {
|
|
let bj: Invariant<'r> = b_isize;
|
|
}
|
|
|
|
fn to_longer_lifetime<'r>(b_isize: Invariant<'r>) -> Invariant<'static> {
|
|
b_isize
|
|
//~^ ERROR lifetime may not live long enough
|
|
}
|
|
|
|
fn main() {
|
|
}
|