Skip to content

Commit 3d9d0e9

Browse files
committedDec 31, 2020
Require -Z unstable-options for unstable editions.
1 parent c574ded commit 3d9d0e9

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎compiler/rustc_session/src/config.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1308,12 +1308,11 @@ fn parse_crate_edition(matches: &getopts::Matches) -> Edition {
13081308
None => DEFAULT_EDITION,
13091309
};
13101310

1311-
if !edition.is_stable() && !nightly_options::match_is_nightly_build(matches) {
1311+
if !edition.is_stable() && !nightly_options::is_unstable_enabled(matches) {
13121312
early_error(
13131313
ErrorOutputType::default(),
13141314
&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.",
13171316
edition,
13181317
),
13191318
)

‎src/test/ui/hello2021.rs

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// run-pass
22
// edition:2021
3+
// compile-flags: -Zunstable-options
34

45
fn main() {
56
println!("hello, 2021");

0 commit comments

Comments
 (0)
Please sign in to comment.