summaryrefslogtreecommitdiffstats
path: root/tests/ui/consts/const-extern-fn/const-extern-fn-requires-unsafe.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/consts/const-extern-fn/const-extern-fn-requires-unsafe.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/consts/const-extern-fn/const-extern-fn-requires-unsafe.rs')
-rw-r--r--tests/ui/consts/const-extern-fn/const-extern-fn-requires-unsafe.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/consts/const-extern-fn/const-extern-fn-requires-unsafe.rs b/tests/ui/consts/const-extern-fn/const-extern-fn-requires-unsafe.rs
new file mode 100644
index 000000000..afe645ae8
--- /dev/null
+++ b/tests/ui/consts/const-extern-fn/const-extern-fn-requires-unsafe.rs
@@ -0,0 +1,14 @@
+// revisions: mir thir
+// [thir]compile-flags: -Z thir-unsafeck
+
+#![feature(const_extern_fn)]
+
+const unsafe extern "C" fn foo() -> usize { 5 }
+
+fn main() {
+ let a: [u8; foo()];
+ //[mir]~^ call to unsafe function is unsafe and requires unsafe function or block
+ //[thir]~^^ call to unsafe function `foo` is unsafe and requires unsafe function or block
+ foo();
+ //[mir]~^ ERROR call to unsafe function is unsafe and requires unsafe function or block
+}