mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
14 lines
321 B
Rust
14 lines
321 B
Rust
//@ revisions: edition2021 edition2024
|
|
//@ [edition2024] compile-flags: -Zunstable-options
|
|
//@ [edition2024] edition: 2024
|
|
//@ [edition2024] run-pass
|
|
|
|
fn f() -> usize {
|
|
let c = std::cell::RefCell::new("..");
|
|
c.borrow().len() //[edition2021]~ ERROR: `c` does not live long enough
|
|
}
|
|
|
|
fn main() {
|
|
let _ = f();
|
|
}
|