mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +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
|
|
}
|