1
Fork 0

Rollup merge of #49968 - christianpoveda:stabilize_dyn, r=nikomatsakis

Stabilize dyn trait

This PR stabilizes RFC 2113. I followed the [stabilization guide](https://forge.rust-lang.org/stabilization-guide.html).

Related issue: https://github.com/rust-lang/rust/issues/49218
This commit is contained in:
kennytm 2018-04-28 03:32:12 +08:00 committed by GitHub
commit 8b36d9abaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
50 changed files with 155 additions and 214 deletions

View file

@ -13,6 +13,8 @@
html_root_url = "https://doc.rust-lang.org/nightly/",
html_playground_url = "https://play.rust-lang.org/")]
#![cfg_attr(stage0, feature(dyn_trait))]
#![feature(ascii_ctype)]
#![feature(rustc_private)]
#![feature(box_patterns)]
@ -23,7 +25,6 @@
#![feature(test)]
#![feature(vec_remove_item)]
#![feature(entry_and_modify)]
#![feature(dyn_trait)]
extern crate arena;
extern crate getopts;