mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
15 lines
283 B
Rust
15 lines
283 B
Rust
|
struct Foo {
|
||
|
}
|
||
|
|
||
|
impl Foo {
|
||
|
fn method(&mut self, foo: &mut Foo) {
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let mut foo = Foo { };
|
||
|
foo.method(&mut foo);
|
||
|
//~^ cannot borrow `foo` as mutable more than once at a time
|
||
|
//~^^ cannot borrow `foo` as mutable more than once at a time
|
||
|
}
|