You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
expand: Change how #![cfg(FALSE)] behaves on crate root
Previously it removed all other attributes from the crate root.
Now it removes only attributes below itself.
So it becomes possible to configure some global crate properties even for fully unconfigured crates.
= warning: unstable syntax can change at any point in the future, causing a hard error!
10
10
= note: for more information, see issue #65860 <https://github.com/rust-lang/rust/issues/65860>
11
11
12
-
warning: `macro` is experimental
13
-
--> $DIR/cfg-false-feature.rs:11:1
14
-
|
15
-
LL | macro mac() {}
16
-
| ^^^^^^^^^^^^^^
17
-
|
18
-
= note: see issue #39412 <https://github.com/rust-lang/rust/issues/39412> for more information
19
-
= help: add `#![feature(decl_macro)]` to the crate attributes to enable
20
-
= warning: unstable syntax can change at any point in the future, causing a hard error!
21
-
= note: for more information, see issue #65860 <https://github.com/rust-lang/rust/issues/65860>
22
-
23
12
warning: box pattern syntax is experimental
24
-
--> $DIR/cfg-false-feature.rs:18:9
13
+
--> $DIR/cfg-false-feature.rs:16:9
25
14
|
26
15
LL | let box _ = Box::new(0);
27
16
| ^^^^^
@@ -31,5 +20,5 @@ LL | let box _ = Box::new(0);
31
20
= warning: unstable syntax can change at any point in the future, causing a hard error!
32
21
= note: for more information, see issue #65860 <https://github.com/rust-lang/rust/issues/65860>
0 commit comments