Sign in
rust
/
rust
/
9b1f20d20dc00a950f99a00a34be9d2ca78d1f0d
/
.
/
tests
/
ui
/
rustdoc
/
cfg-rustdoc.rs
blob: 11c48d075520fd5283b96435bd810380470c5da6 [
file
]
#[
cfg
(
doc
)]
//~ NOTE the item is gated here
pub
struct
Foo
;
//~ NOTE found an item that was configured out
fn
main
()
{
let
f
=
Foo
;
//~ ERROR cannot find value `Foo` in this scope
//~^ NOTE not found in this scope
}