Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
issue_4475.rs
blob: 241dc91d7ba668ede574ac69cbce6677f70d8d58 [
file
] [
log
] [
blame
] [
edit
]
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;
}
}