mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
11 lines
238 B
Rust
11 lines
238 B
Rust
|
// run-rustfix
|
||
|
#![allow(unused_imports)]
|
||
|
use std::borrow::BorrowMut;
|
||
|
use std::cell::RefCell;
|
||
|
use std::rc::Rc;
|
||
|
|
||
|
fn main() {
|
||
|
let rc = Rc::new(RefCell::new(true));
|
||
|
*std::cell::RefCell::<_>::borrow_mut(&rc) = false; //~ ERROR E0308
|
||
|
}
|