rust/tests/ui/error-codes/E0133.rs
Matthew Jasper 982b49494e Remove revisions for THIR unsafeck
This is to make the diff when stabilizing it easier to review.
2024-01-05 09:30:27 +00:00

7 lines
71 B
Rust

unsafe fn f() { return; }
fn main() {
f();
//~^ ERROR E0133
}