mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
34 lines
525 B
Rust
34 lines
525 B
Rust
use std::ops::Deref;
|
|
|
|
struct DerefTarget {
|
|
target_field: bool,
|
|
}
|
|
|
|
impl DerefTarget {
|
|
fn get(&self) -> &bool {
|
|
&self.target_field
|
|
}
|
|
}
|
|
|
|
struct Container {
|
|
target: DerefTarget,
|
|
container_field: bool,
|
|
}
|
|
|
|
impl Deref for Container {
|
|
type Target = DerefTarget;
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.target
|
|
}
|
|
}
|
|
|
|
impl Container {
|
|
fn bad_borrow(&mut self) {
|
|
let first = self.get();
|
|
self.container_field = true; //~ ERROR E0506
|
|
first;
|
|
}
|
|
}
|
|
|
|
fn main() {}
|