diff options
Diffstat (limited to 'tests/ui/unsafe/unsafe-fn-called-from-safe.rs')
| -rw-r--r-- | tests/ui/unsafe/unsafe-fn-called-from-safe.rs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/unsafe/unsafe-fn-called-from-safe.rs b/tests/ui/unsafe/unsafe-fn-called-from-safe.rs new file mode 100644 index 00000000000..55072dcc6c3 --- /dev/null +++ b/tests/ui/unsafe/unsafe-fn-called-from-safe.rs @@ -0,0 +1,10 @@ +// revisions: mir thir +// [thir]compile-flags: -Z thir-unsafeck + +unsafe fn f() { return; } + +fn main() { + f(); + //[mir]~^ ERROR call to unsafe function is unsafe + //[thir]~^^ ERROR call to unsafe function `f` is unsafe +} |
