Sign in
rust
/
rust-lang
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
ui
/
cfg
/
auxiliary
/
cfg_inner_static.rs
blob: 6a619a4e768cf0e648b5b34af5db1e7ad57a58b7 [
file
] [
log
] [
blame
] [
edit
]
// this used to just ICE on compiling
pub
fn
foo
()
{
if
cfg
!(
foo
)
{
static
a
:
isize
=
3
;
a
}
else
{
3
};
}