Sign in
fuchsia
/
third_party
/
rust
/
c38f75c21f016bffbf841ed5abce338f94201bde
/
.
/
tests
/
ui
/
parser
/
stripped-nested-outline-mod-pass.rs
blob: 8909d8ae0eb63ce43f13927ec3da3ca1ea506c2d [
file
] [
log
] [
blame
]
// Expansion drives parsing, so conditional compilation will strip
// out outline modules and we will never attempt parsing them.
//@ check-pass
fn
main
()
{}
#[
cfg
(
FALSE
)]
mod
foo
{
mod
bar
{
mod
baz
;
// This was an error before.
}
}