mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 23:22:30 +00:00
10 lines
127 B
Rust
10 lines
127 B
Rust
//@ check-pass
|
|
|
|
use std::cell::RefCell;
|
|
|
|
pub fn f(v: Vec<RefCell<u8>>) {
|
|
let _t = &mut *v[0].borrow_mut();
|
|
}
|
|
|
|
fn main() {}
|