rust/src/test/ui/issues/issue-4972.rs
2018-12-25 21:08:33 -07:00

19 lines
316 B
Rust

#![feature(box_patterns)]
#![feature(box_syntax)]
trait MyTrait {
fn dummy(&self) {}
}
pub enum TraitWrapper {
A(Box<MyTrait+'static>),
}
fn get_tw_map(tw: &TraitWrapper) -> &MyTrait {
match *tw {
TraitWrapper::A(box ref map) => map, //~ ERROR cannot be dereferenced
}
}
pub fn main() {}