File tree 2 files changed +3
-3
lines changed
compiler/rustc_session/src
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1308,12 +1308,11 @@ fn parse_crate_edition(matches: &getopts::Matches) -> Edition {
1308
1308
None => DEFAULT_EDITION ,
1309
1309
} ;
1310
1310
1311
- if !edition. is_stable ( ) && !nightly_options:: match_is_nightly_build ( matches) {
1311
+ if !edition. is_stable ( ) && !nightly_options:: is_unstable_enabled ( matches) {
1312
1312
early_error (
1313
1313
ErrorOutputType :: default ( ) ,
1314
1314
& format ! (
1315
- "edition {} is unstable and only \
1316
- available for nightly builds of rustc.",
1315
+ "edition {} is unstable and only available with -Z unstable-options." ,
1317
1316
edition,
1318
1317
) ,
1319
1318
)
Original file line number Diff line number Diff line change 1
1
// run-pass
2
2
// edition:2021
3
+ // compile-flags: -Zunstable-options
3
4
4
5
fn main ( ) {
5
6
println ! ( "hello, 2021" ) ;
You can’t perform that action at this time.
0 commit comments