mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
20 lines
414 B
Rust
20 lines
414 B
Rust
// Test that Cell is considered invariant with respect to its
|
|
// type.
|
|
|
|
use std::cell::Cell;
|
|
|
|
struct Foo<'a> {
|
|
x: Cell<Option<&'a isize>>,
|
|
}
|
|
|
|
fn use_<'short,'long>(c: Foo<'short>,
|
|
s: &'short isize,
|
|
l: &'long isize,
|
|
_where:Option<&'short &'long ()>) {
|
|
let _: Foo<'long> = c;
|
|
//~^ ERROR lifetime may not live long enough
|
|
}
|
|
|
|
fn main() {
|
|
}
|