rust/tests/ui/issues/issue-6318.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
297 B
Rust
Raw Normal View History

// run-pass
// pretty-expanded FIXME #23616
pub enum Thing {
2019-05-28 18:47:21 +00:00
A(Box<dyn Foo+'static>)
}
pub trait Foo {
fn dummy(&self) { }
}
pub struct Struct;
impl Foo for Struct {}
pub fn main() {
match Thing::A(Box::new(Struct) as Box<dyn Foo + 'static>) {
2015-01-25 21:05:03 +00:00
Thing::A(_a) => 0,
};
}