975152ce30
Nemo157 rebase notes: Migrated the changes to the lint into fluent
13 lines
231 B
Rust
13 lines
231 B
Rust
// run-rustfix
|
|
|
|
#![deny(unsafe_op_in_unsafe_fn)]
|
|
|
|
unsafe fn unsf() {}
|
|
|
|
pub unsafe fn foo() { unsafe {
|
|
unsf(); //~ ERROR call to unsafe function is unsafe
|
|
unsf(); //~ ERROR call to unsafe function is unsafe
|
|
}}
|
|
|
|
fn main() {}
|