summaryrefslogtreecommitdiffstats
path: root/tests/ui/cfg/cfg-false-feature.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/cfg/cfg-false-feature.rs')
-rw-r--r--tests/ui/cfg/cfg-false-feature.rs6
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/ui/cfg/cfg-false-feature.rs b/tests/ui/cfg/cfg-false-feature.rs
index 21ea3ec79..84c231562 100644
--- a/tests/ui/cfg/cfg-false-feature.rs
+++ b/tests/ui/cfg/cfg-false-feature.rs
@@ -1,5 +1,4 @@
-// It is unclear which features should be in effect in a fully unconfigured crate (issue #104633).
-// Currently none on the features are in effect, so we get the feature gates reported.
+// Features above `cfg(FALSE)` are in effect in a fully unconfigured crate (issue #104633).
// check-pass
// compile-flags: --crate-type lib
@@ -8,8 +7,7 @@
#![cfg(FALSE)]
#![feature(box_syntax)]
-macro mac() {} //~ WARN `macro` is experimental
- //~| WARN unstable syntax can change at any point in the future
+macro mac() {} // OK
trait A = Clone; //~ WARN trait aliases are experimental
//~| WARN unstable syntax can change at any point in the future