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-gate.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-gate.rs')
| -rw-r--r-- | tests/rustdoc/doc-cfg/doc-cfg-implicit-gate.rs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/rustdoc/doc-cfg/doc-cfg-implicit-gate.rs b/tests/rustdoc/doc-cfg/doc-cfg-implicit-gate.rs new file mode 100644 index 00000000000..b5b8d0f427b --- /dev/null +++ b/tests/rustdoc/doc-cfg/doc-cfg-implicit-gate.rs @@ -0,0 +1,7 @@ +//@ compile-flags:--cfg feature="worricow" +#![crate_name = "xenogenous"] + +//@ has 'xenogenous/struct.Worricow.html' +//@ count - '//*[@class="stab portability"]' 0 +#[cfg(feature = "worricow")] +pub struct Worricow; |
