Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
execute
/
torture
/
cfg5.rs
blob: 581a29bb89d092227874737d7bc255f39ee47950 [
file
] [
log
] [
blame
]
// { dg-additional-options "-w -frust-cfg=A" }
fn
main
()
->
i32
{
let
mut
a
=
0
;
#[
cfg
(
A
)]
a
=
3
;
#[
cfg
(
B
)]
a
=
40
;
a
-
3
}