rust/tests/ui/inference/issue-28935.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
127 B
Rust
Raw Normal View History

2022-05-13 21:04:47 +08:00
//@ check-pass
use std::cell::RefCell;
pub fn f(v: Vec<RefCell<u8>>) {
let _t = &mut *v[0].borrow_mut();
}
fn main() {}