mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
319 B
Rust
22 lines
319 B
Rust
struct Pass<'a> {
|
|
s: &'a mut String
|
|
}
|
|
|
|
impl<'a> Pass<'a> {
|
|
fn f(&mut self) {
|
|
self.s.push('x');
|
|
}
|
|
}
|
|
|
|
struct Foo<'a> {
|
|
s: &'a mut String
|
|
}
|
|
|
|
impl<'a> Foo<'a> {
|
|
fn f(&self) {
|
|
self.s.push('x'); //~ cannot borrow `*self.s` as mutable, as it is behind a `&` reference
|
|
}
|
|
}
|
|
|
|
fn main() {}
|