Implement feature-gating for the compiler
A few features are now hidden behind various #[feature(...)] directives. These include struct-like enum variants, glob imports, and macro_rules! invocations. Closes #9304 Closes #9305 Closes #9306 Closes #9331
This commit is contained in:
@@ -20,6 +20,8 @@
|
||||
#[license = "MIT/ASL2"];
|
||||
#[crate_type = "lib"];
|
||||
|
||||
#[feature(macro_rules, globs)];
|
||||
|
||||
extern mod extra;
|
||||
|
||||
pub mod util {
|
||||
|
||||
Reference in New Issue
Block a user