summaryrefslogtreecommitdiffstats
path: root/tests/ui/unique/unique-init.rs
blob: d19605046e1bc349e49fa67283ef00f17fcc3af3 (plain)
1
2
3
4
5
6
// run-pass
// pretty-expanded FIXME #23616

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