// run-pass #![allow(unused_variables)] #![feature(box_syntax)] struct Node(T); fn main() { let x: Box> = box Node([]); }