summaryrefslogtreecommitdiffstats
path: root/tests/ui/filter-block-view-items.rs
blob: e63aa91577bc9ee37802f22128275cdddd2c7529 (plain)
1
2
3
4
5
6
7
8
// run-pass
// pretty-expanded FIXME #23616

pub fn main() {
    // Make sure that this view item is filtered out because otherwise it would
    // trigger a compilation error
    #[cfg(not_present)] use bar as foo;
}