diff options
| author | Christian Poveda <christianpoveda@protonmail.com> | 2018-04-25 12:55:21 -0500 |
|---|---|---|
| committer | Christian Poveda <christianpoveda@protonmail.com> | 2018-04-27 11:02:39 -0500 |
| commit | b5c7cbf2f288967f55f8155a1ded7379ee4161f0 (patch) | |
| tree | e90def496c17f6f3c1a293addba569a326b4a046 /src | |
| parent | b80472d84c4b5b28fd22c5ef56af181bbf544c88 (diff) | |
rustdoc asks for dyn_trait feature in stage0
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustdoc/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/librustdoc/lib.rs b/src/librustdoc/lib.rs index 1819c7eb7d1..00153061fd5 100644 --- a/src/librustdoc/lib.rs +++ b/src/librustdoc/lib.rs @@ -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)] |
