about summary refs log tree commit diff
path: root/tests/rustdoc/doc-cfg/doc-cfg-target-feature.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 16:42:18 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:47:18 +0200
commitbe71d8b24f1aebe9c45279d95a76db8fa6a62574 (patch)
tree57506bf9e7480702442acbf31ee55cd060c2929b /tests/rustdoc/doc-cfg/doc-cfg-target-feature.rs
parentd1f4a0bcb60ab868c496ca72a28b48ac0a4128af (diff)
downloadrust-be71d8b24f1aebe9c45279d95a76db8fa6a62574.tar.gz
rust-be71d8b24f1aebe9c45279d95a76db8fa6a62574.zip
Created `tests/rustdoc/doc-cfg` subfolder to limit number of files at the top level
Diffstat (limited to 'tests/rustdoc/doc-cfg/doc-cfg-target-feature.rs')
-rw-r--r--tests/rustdoc/doc-cfg/doc-cfg-target-feature.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/rustdoc/doc-cfg/doc-cfg-target-feature.rs b/tests/rustdoc/doc-cfg/doc-cfg-target-feature.rs
new file mode 100644
index 00000000000..b66e86e36af
--- /dev/null
+++ b/tests/rustdoc/doc-cfg/doc-cfg-target-feature.rs
@@ -0,0 +1,20 @@
+//@ only-x86_64
+//@ compile-flags:--test
+//@ should-fail
+
+// #49723: rustdoc didn't add target features when extracting or running doctests
+
+#![feature(doc_cfg)]
+
+/// Foo
+///
+/// # Examples
+///
+/// ```
+/// #![feature(cfg_target_feature)]
+///
+/// #[cfg(target_feature = "sse")]
+/// assert!(false);
+/// ```
+#[doc(cfg(target_feature = "sse"))]
+pub unsafe fn foo() {}