Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
#![allow(unused_variables)]
#![feature(box_syntax)]
struct Node<T: ?Sized>(T);
fn main() {
let x: Box<Node<[isize]>> = box Node([]);
}