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.
1 parent 9fb32dc commit 29c128aCopy full SHA for 29c128a
src/test/ui/async-await/async-await.rs
@@ -6,7 +6,7 @@
6
7
#![allow(unused)]
8
9
-// edition:2018
+// edition: 2018
10
// aux-build:arc_wake.rs
11
12
extern crate arc_wake;
src/tools/compiletest/src/header.rs
@@ -294,7 +294,7 @@ impl TestProps {
294
}
295
296
if let Some(edition) = config.parse_edition(ln) {
297
- self.compile_flags.push(format!("--edition={}", edition));
+ self.compile_flags.push(format!("--edition={}", edition.trim()));
298
has_edition = true;
299
300
0 commit comments