Sign in
rust
/
rust
/
0e252dfa22dd03f8a87f665d0ebe1192a5da07bf
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
issue_4475.rs
blob: 241dc91d7ba668ede574ac69cbce6677f70d8d58 [
file
]
fn
main
()
{
#[
cfg
(
debug_assertions
)]
{
println
!(
"DEBUG"
);
}
}
fn
main
()
{
#[
cfg
(
feature
=
"foo"
)]
{
/*
let foo = 0
*/
}
}
fn
main
()
{
#[
cfg
(
feature
=
"foo"
)]
{
/* let foo = 0; */
}
}
fn
main
()
{
#[
foo
]
#[
bar
]
#[
baz
]
{
// let foo = 0;
}
}