mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
29 lines
674 B
Rust
29 lines
674 B
Rust
use std::cell::RefCell;
|
|
|
|
fn main() {
|
|
let mut y = 1;
|
|
let c = RefCell::new(vec![]);
|
|
c.push(Box::new(|| y = 0));
|
|
c.push(Box::new(|| y = 0));
|
|
//~^ ERROR cannot borrow `y` as mutable more than once at a time
|
|
}
|
|
|
|
fn ufcs() {
|
|
let mut y = 1;
|
|
let c = RefCell::new(vec![]);
|
|
|
|
Push::push(&c, Box::new(|| y = 0));
|
|
Push::push(&c, Box::new(|| y = 0));
|
|
//~^ ERROR cannot borrow `y` as mutable more than once at a time
|
|
}
|
|
|
|
trait Push<'c> {
|
|
fn push<'f: 'c>(&self, push: Box<dyn FnMut() + 'f>);
|
|
}
|
|
|
|
impl<'c> Push<'c> for RefCell<Vec<Box<dyn FnMut() + 'c>>> {
|
|
fn push<'f: 'c>(&self, fun: Box<dyn FnMut() + 'f>) {
|
|
self.borrow_mut().push(fun)
|
|
}
|
|
}
|