rust/tests/ui/filter-block-view-items.rs

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

9 lines
214 B
Rust
Raw Normal View History

//@ run-pass
//@ pretty-expanded FIXME #23616
pub fn main() {
2013-05-25 06:29:54 +08:00
// Make sure that this view item is filtered out because otherwise it would
// trigger a compilation error
#[cfg(FALSE)] use bar as foo;
2013-05-25 06:29:54 +08:00
}