// run-pass // pretty-expanded FIXME #23616 pub enum Thing { A(Box) } pub trait Foo { fn dummy(&self) { } } pub struct Struct; impl Foo for Struct {} pub fn main() { match Thing::A(Box::new(Struct) as Box) { Thing::A(_a) => 0, }; }