summaryrefslogtreecommitdiffstats
path: root/src/test/ui/unsafe/unsafe-fn-called-from-safe.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/unsafe/unsafe-fn-called-from-safe.rs')
-rw-r--r--src/test/ui/unsafe/unsafe-fn-called-from-safe.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/test/ui/unsafe/unsafe-fn-called-from-safe.rs b/src/test/ui/unsafe/unsafe-fn-called-from-safe.rs
new file mode 100644
index 000000000..55072dcc6
--- /dev/null
+++ b/src/test/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
+}