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-implicit.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-implicit.rs')
| -rw-r--r-- | tests/rustdoc/doc-cfg/doc-cfg-implicit.rs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/rustdoc/doc-cfg/doc-cfg-implicit.rs b/tests/rustdoc/doc-cfg/doc-cfg-implicit.rs new file mode 100644 index 00000000000..69b10867ee3 --- /dev/null +++ b/tests/rustdoc/doc-cfg/doc-cfg-implicit.rs @@ -0,0 +1,31 @@ +#![crate_name = "funambulism"] +#![feature(doc_auto_cfg, doc_cfg)] + +//@ has 'funambulism/struct.Disorbed.html' +//@ count - '//*[@class="stab portability"]' 1 +//@ matches - '//*[@class="stab portability"]' 'crate feature disorbed' +//@ compile-flags:--cfg feature="disorbed" +#[cfg(feature = "disorbed")] +pub struct Disorbed; + +//@ has 'funambulism/struct.Aesthesia.html' +//@ count - '//*[@class="stab portability"]' 1 +//@ matches - '//*[@class="stab portability"]' 'crate feature aesthesia' +//@ compile-flags:--cfg feature="aesthesia" +#[doc(cfg(feature = "aesthesia"))] +pub struct Aesthesia; + +//@ has 'funambulism/struct.Pliothermic.html' +//@ count - '//*[@class="stab portability"]' 1 +//@ matches - '//*[@class="stab portability"]' 'crate feature pliothermic' +//@ compile-flags:--cfg feature="epopoeist" +#[cfg(feature = "epopoeist")] +#[doc(cfg(feature = "pliothermic"))] +pub struct Pliothermic; + +//@ has 'funambulism/struct.Simillimum.html' +//@ count - '//*[@class="stab portability"]' 0 +//@ compile-flags:--cfg feature="simillimum" +#[cfg(feature = "simillimum")] +#[doc(cfg(all()))] +pub struct Simillimum; |
