mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 18:57:19 +00:00
8 lines
181 B
Rust
8 lines
181 B
Rust
//@ run-pass
|
|
|
|
pub fn main() {
|
|
// Make sure that this view item is filtered out because otherwise it would
|
|
// trigger a compilation error
|
|
#[cfg(false)] use bar as foo;
|
|
}
|