blob: 153f942b978a88d979c8d6e6ce4b94853dc1fa2d [file] [log] [blame]
// compile-pass
// compile-flags: -Z continue-parse-after-error
#![feature(box_syntax)]
use std::fmt::Debug;
fn main() {
let x: Box<Debug+> = box 3 as Box<Debug+>; // Trailing `+` is OK
}