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-hide.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-hide.rs')
| -rw-r--r-- | tests/rustdoc/doc-cfg/doc-cfg-hide.rs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/tests/rustdoc/doc-cfg/doc-cfg-hide.rs b/tests/rustdoc/doc-cfg/doc-cfg-hide.rs new file mode 100644 index 00000000000..ceb1f99fae0 --- /dev/null +++ b/tests/rustdoc/doc-cfg/doc-cfg-hide.rs @@ -0,0 +1,32 @@ +#![crate_name = "oud"] +#![feature(doc_auto_cfg, doc_cfg, doc_cfg_hide)] + +#![doc(cfg_hide(feature = "solecism"))] + +//@ has 'oud/struct.Solecism.html' +//@ count - '//*[@class="stab portability"]' 0 +//@ compile-flags:--cfg feature="solecism" +#[cfg(feature = "solecism")] +pub struct Solecism; + +//@ has 'oud/struct.Scribacious.html' +//@ count - '//*[@class="stab portability"]' 1 +//@ matches - '//*[@class="stab portability"]' 'crate feature solecism' +#[cfg(feature = "solecism")] +#[doc(cfg(feature = "solecism"))] +pub struct Scribacious; + +//@ has 'oud/struct.Hyperdulia.html' +//@ count - '//*[@class="stab portability"]' 1 +//@ matches - '//*[@class="stab portability"]' 'crate feature hyperdulia' +//@ compile-flags:--cfg feature="hyperdulia" +#[cfg(feature = "solecism")] +#[cfg(feature = "hyperdulia")] +pub struct Hyperdulia; + +//@ has 'oud/struct.Oystercatcher.html' +//@ count - '//*[@class="stab portability"]' 1 +//@ matches - '//*[@class="stab portability"]' 'crate feature oystercatcher only' +//@ compile-flags:--cfg feature="oystercatcher" +#[cfg(all(feature = "solecism", feature = "oystercatcher"))] +pub struct Oystercatcher; |
