1
Fork 0

fix feature use in rustc libs

This commit is contained in:
Ralf Jung 2021-04-18 22:05:45 +02:00
parent fbfaab2cb7
commit bd9556956a
11 changed files with 2 additions and 11 deletions

View file

@ -10,7 +10,8 @@
)]
#![feature(box_syntax)]
#![feature(box_patterns)]
#![feature(const_fn)] // For the `transmute` in `P::new`
#![cfg_attr(bootstrap, feature(const_fn))] // For the `transmute` in `P::new`
#![cfg_attr(not(bootstrap), feature(const_fn_unsize))] // For the `transmute` in `P::new`
#![feature(const_fn_transmute)]
#![feature(const_panic)]
#![feature(crate_visibility_modifier)]