DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / unsafe / issue-3080.rs
12345678
struct X(()); impl X { pub unsafe fn with(&self) { } } fn main() { X(()).with(); //~ ERROR requires unsafe function or block }