Files
rust/tests/rustdoc-ui/cfg-hide-show-conflict.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
469 B
Plaintext
Raw Permalink Normal View History

2025-03-29 00:54:22 +01:00
error: same `cfg` was in `auto_cfg(hide(...))` and `auto_cfg(show(...))` on the same item
--> $DIR/cfg-hide-show-conflict.rs:3:31
2025-03-29 00:54:22 +01:00
|
LL | #![doc(auto_cfg(show(windows, target_os = "linux")))]
| ^^^^^^^^^^^^^^^^^^^
|
note: first change was here
--> $DIR/cfg-hide-show-conflict.rs:2:22
2025-03-29 00:54:22 +01:00
|
LL | #![doc(auto_cfg(hide(target_os = "linux")))]
| ^^^^^^^^^^^^^^^^^^^
error: aborting due to 1 previous error