summaryrefslogtreecommitdiffstats
path: root/tests/ui/asm/generic-const.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/asm/generic-const.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/asm/generic-const.rs')
-rw-r--r--tests/ui/asm/generic-const.rs30
1 files changed, 30 insertions, 0 deletions
diff --git a/tests/ui/asm/generic-const.rs b/tests/ui/asm/generic-const.rs
new file mode 100644
index 000000000..caa9b7dbc
--- /dev/null
+++ b/tests/ui/asm/generic-const.rs
@@ -0,0 +1,30 @@
+// needs-asm-support
+// build-pass
+
+#![feature(asm_const)]
+
+use std::arch::asm;
+
+fn foofoo<const N: usize>() {}
+
+unsafe fn foo<const N: usize>() {
+ asm!("/* {0} */", const N);
+ asm!("/* {0} */", const N + 1);
+ asm!("/* {0} */", sym foofoo::<N>);
+}
+
+fn barbar<T>() {}
+
+unsafe fn bar<T>() {
+ asm!("/* {0} */", const std::mem::size_of::<T>());
+ asm!("/* {0} */", const std::mem::size_of::<(T, T)>());
+ asm!("/* {0} */", sym barbar::<T>);
+ asm!("/* {0} */", sym barbar::<(T, T)>);
+}
+
+fn main() {
+ unsafe {
+ foo::<0>();
+ bar::<usize>();
+ }
+}