diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-05-05 16:42:18 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2025-05-05 17:47:18 +0200 |
| commit | be71d8b24f1aebe9c45279d95a76db8fa6a62574 (patch) | |
| tree | 57506bf9e7480702442acbf31ee55cd060c2929b /tests/rustdoc/doc-cfg/doc-cfg-target-feature.rs | |
| parent | d1f4a0bcb60ab868c496ca72a28b48ac0a4128af (diff) | |
| download | rust-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.rs | 20 |
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() {} |
