rust/tests/ui/parser/stripped-nested-outline-mod-pass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
253 B
Rust
Raw Normal View History

// 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.
}
}