Т8
Size: a a a
Т8
Т8
Т8
Т8
AB
Т8
Т8
AB
AB
Т8
EG
r
EG
struct Context<'a> {
// other fields
parent: Option<&'a Context<'a>>
}
impl<'a> Context<'a> {
pub fn fork(&self) -> Self {
Self {
// other fields
parent: Some(self)
}
}
}EG
p
p
p
EG
EG
EG