mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 17:31:52 +00:00
8 lines
154 B
Rust
8 lines
154 B
Rust
#![doc(cfg_hide(test))]
|
|
//~^ ERROR `#[doc(cfg_hide)]` is experimental
|
|
|
|
#[cfg(not(test))]
|
|
pub fn public_fn() {}
|
|
#[cfg(test)]
|
|
pub fn internal_use_only() {}
|