summaryrefslogtreecommitdiff
path: root/vendor/rustversion/tests/test_const.rs
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-02 18:36:06 -0600
committermo khan <mo@mokhan.ca>2025-07-02 18:36:06 -0600
commit8cdfa445d6629ffef4cb84967ff7017654045bc2 (patch)
tree22f0b0907c024c78d26a731e2e1f5219407d8102 /vendor/rustversion/tests/test_const.rs
parent4351c74c7c5f97156bc94d3a8549b9940ac80e3f (diff)
chore: add vendor directory
Diffstat (limited to 'vendor/rustversion/tests/test_const.rs')
-rw-r--r--vendor/rustversion/tests/test_const.rs42
1 files changed, 42 insertions, 0 deletions
diff --git a/vendor/rustversion/tests/test_const.rs b/vendor/rustversion/tests/test_const.rs
new file mode 100644
index 00000000..0d0c7b85
--- /dev/null
+++ b/vendor/rustversion/tests/test_const.rs
@@ -0,0 +1,42 @@
+#![allow(
+ clippy::semicolon_if_nothing_returned, // https://github.com/rust-lang/rust-clippy/issues/7324
+ clippy::used_underscore_items,
+)]
+
+#[rustversion::attr(all(), const)]
+fn _basic() {}
+const _BASIC: () = _basic();
+
+#[rustversion::attr(all(), const)]
+unsafe fn _unsafe() {}
+const _UNSAFE: () = unsafe { _unsafe() };
+
+macro_rules! item {
+ ($i:item) => {
+ #[rustversion::attr(all(), const)]
+ $i
+ };
+}
+
+item! {fn _item() {}}
+const _ITEM: () = _item();
+
+macro_rules! ident {
+ ($fn:ident) => {
+ #[rustversion::attr(all(), const)]
+ $fn _ident() {}
+ };
+}
+
+ident! {fn}
+const _IDENT: () = _ident();
+
+#[rustversion::attr(all(), const)]
+/// doc
+fn _doc_below() {}
+const _DOC_BELOW: () = _doc_below();
+
+/// doc
+#[rustversion::attr(all(), const)]
+fn _doc_above() {}
+const _DOC_ABOVE: () = _doc_above();