rust/tests/ui/span/borrowck-call-method-from-mut-aliasable.rs
2023-01-11 09:32:08 +00:00

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() {
}