1use crate::records::reg_scope::RegScope; 2 3impl RegScope { 4 pub fn drop(&mut self) { 5 unsafe { 6 (*self.self_).reg_top = self.old_top; 7 } 8 } 9}