1 2 3 4 5 6 7 8
struct X(()); impl X { pub unsafe fn with(&self) { } } fn main() { X(()).with(); //~ ERROR requires unsafe function or block }