2013-05-22 19:51:21 -07:00
|
|
|
// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-02-10 22:52:00 +01:00
|
|
|
#![feature(box_patterns)]
|
2015-01-07 22:35:56 +01:00
|
|
|
#![feature(box_syntax)]
|
2014-05-05 18:56:44 -07:00
|
|
|
|
2015-02-12 10:29:52 -05:00
|
|
|
trait MyTrait {
|
|
|
|
fn dummy(&self) {}
|
|
|
|
}
|
2013-05-22 19:51:21 -07:00
|
|
|
|
|
|
|
pub enum TraitWrapper {
|
2014-08-27 21:46:52 -04:00
|
|
|
A(Box<MyTrait+'static>),
|
2013-05-22 19:51:21 -07:00
|
|
|
}
|
|
|
|
|
2014-07-17 21:44:59 -07:00
|
|
|
fn get_tw_map(tw: &TraitWrapper) -> &MyTrait {
|
2013-05-22 19:51:21 -07:00
|
|
|
match *tw {
|
2014-11-06 00:05:53 -08:00
|
|
|
TraitWrapper::A(box ref map) => map, //~ ERROR cannot be dereferenced
|
2013-05-22 19:51:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-23 02:44:51 -04:00
|
|
|
pub fn main() {}
|