2025-03-29 00:54:22 +01:00
|
|
|
error: same `cfg` was in `auto_cfg(hide(...))` and `auto_cfg(show(...))` on the same item
|
2025-04-11 14:32:31 +02:00
|
|
|
--> $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
|
2025-04-11 14:32:31 +02:00
|
|
|
--> $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
|
|
|
|
|
|