Sign in
rust
/
rust
/
8b69918e7212d74ec1eaae10536c0d5cb63fdc86
/
.
/
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
}