2013-05-22 21:51:21 -05: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 15:52:00 -06:00
|
|
|
#![feature(box_patterns)]
|
2015-01-07 15:35:56 -06:00
|
|
|
#![feature(box_syntax)]
|
2014-05-05 20:56:44 -05:00
|
|
|
|
2015-02-12 09:29:52 -06:00
|
|
|
trait MyTrait {
|
|
|
|
fn dummy(&self) {}
|
|
|
|
}
|
2013-05-22 21:51:21 -05:00
|
|
|
|
|
|
|
pub enum TraitWrapper {
|
2014-08-27 20:46:52 -05:00
|
|
|
A(Box<MyTrait+'static>),
|
2013-05-22 21:51:21 -05:00
|
|
|
}
|
|
|
|
|
2014-07-17 23:44:59 -05:00
|
|
|
fn get_tw_map(tw: &TraitWrapper) -> &MyTrait {
|
2013-05-22 21:51:21 -05:00
|
|
|
match *tw {
|
2014-11-06 02:05:53 -06:00
|
|
|
TraitWrapper::A(box ref map) => map, //~ ERROR cannot be dereferenced
|
2013-05-22 21:51:21 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-23 01:44:51 -05:00
|
|
|
pub fn main() {}
|