summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-3878.rs
blob: 6de3405af0d95fda4f76ed0acd5df700650bbbec (plain)
1
2
3
4
5
6
7
8
9
// run-pass
// pretty-expanded FIXME #23616

#![allow(path_statements)]

pub fn main() {
    let y: Box<_> = Box::new(1);
    y;
}