mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
218 B
Rust
22 lines
218 B
Rust
struct Foo {
|
|
x: isize,
|
|
}
|
|
|
|
impl Foo {
|
|
pub fn f(&self) {}
|
|
pub fn h(&mut self) {}
|
|
}
|
|
|
|
fn a(x: &mut Foo) {
|
|
x.f();
|
|
x.h();
|
|
}
|
|
|
|
fn b(x: &Foo) {
|
|
x.f();
|
|
x.h(); //~ ERROR cannot borrow
|
|
}
|
|
|
|
fn main() {
|
|
}
|