blob: 9146b931a1974cca54a648786dcf9a838041bd7c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
use std::cell::RefCell;
fn main() {
let m = RefCell::new(0);
let mut b = m.borrow_mut();
let b1 = &mut *b;
let b2 = &mut *b; //~ ERROR cannot borrow
b1.use_mut();
}
trait Fake { fn use_mut(&mut self) { } fn use_ref(&self) { } }
impl<T> Fake for T { }
|