We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_2018_feature
1 parent a092469 commit e540c66Copy full SHA for e540c66
tests/testsuite/cargo_features.rs
@@ -296,7 +296,7 @@ fn allow_features_to_rustc() {
296
"src/lib.rs",
297
r#"
298
#![allow(internal_features)]
299
- #![feature(test_2018_feature)]
+ #![feature(rustc_attrs)]
300
"#,
301
)
302
.build();
@@ -307,7 +307,7 @@ fn allow_features_to_rustc() {
307
.with_stderr_contains("[..]E0725[..]")
308
.run();
309
310
- p.cargo("-Zallow-features=test_2018_feature check")
+ p.cargo("-Zallow-features=rustc_attrs check")
311
.masquerade_as_nightly_cargo(&["allow-features"])
312
.with_stderr(
313
"\
0 commit comments