```rs pub fn some_fn(&self) -> u32 { unsafe { &raw (*self.as_ptr()) } } ``` when formatted becomes: ```rs pub fn some_fn(&self) -> u32 { unsafe { &raw(*self.as_ptr()) } } ``` this makes it look like `raw` is a function, which doesn't exist and won't compile.