@@ -9,7 +9,7 @@ note: the lint level is defined here
9
9
|
10
10
LL | #![deny(keyword_idents)]
11
11
| ^^^^^^^^^^^^^^
12
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
12
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
13
13
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
14
14
15
15
error: `await` is a keyword in the 2018 edition
@@ -18,7 +18,7 @@ error: `await` is a keyword in the 2018 edition
18
18
LL | pub struct await;
19
19
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
20
20
|
21
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
21
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
22
22
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
23
23
24
24
error: `await` is a keyword in the 2018 edition
@@ -27,7 +27,7 @@ error: `await` is a keyword in the 2018 edition
27
27
LL | use outer_mod::await::await;
28
28
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
29
29
|
30
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
30
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
31
31
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
32
32
33
33
error: `await` is a keyword in the 2018 edition
@@ -36,7 +36,7 @@ error: `await` is a keyword in the 2018 edition
36
36
LL | use outer_mod::await::await;
37
37
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
38
38
|
39
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
39
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
40
40
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
41
41
42
42
error: `await` is a keyword in the 2018 edition
@@ -45,7 +45,7 @@ error: `await` is a keyword in the 2018 edition
45
45
LL | struct Foo { await: () }
46
46
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
47
47
|
48
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
48
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
49
49
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
50
50
51
51
error: `await` is a keyword in the 2018 edition
@@ -54,7 +54,7 @@ error: `await` is a keyword in the 2018 edition
54
54
LL | impl Foo { fn await() {} }
55
55
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
56
56
|
57
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
57
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
58
58
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
59
59
60
60
error: `await` is a keyword in the 2018 edition
@@ -63,7 +63,7 @@ error: `await` is a keyword in the 2018 edition
63
63
LL | macro_rules! await {
64
64
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
65
65
|
66
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
66
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
67
67
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
68
68
69
69
error: `await` is a keyword in the 2018 edition
@@ -72,7 +72,7 @@ error: `await` is a keyword in the 2018 edition
72
72
LL | await!();
73
73
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
74
74
|
75
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
75
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
76
76
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
77
77
78
78
error: `await` is a keyword in the 2018 edition
@@ -81,7 +81,7 @@ error: `await` is a keyword in the 2018 edition
81
81
LL | match await { await => {} }
82
82
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
83
83
|
84
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
84
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
85
85
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
86
86
87
87
error: `await` is a keyword in the 2018 edition
@@ -90,7 +90,7 @@ error: `await` is a keyword in the 2018 edition
90
90
LL | match await { await => {} }
91
91
| ^^^^^ help: you can use a raw identifier to stay compatible: `r#await`
92
92
|
93
- = warning: this is valid in the current edition (Rust 2015) but is not accepted in the Rust 2018 edition !
93
+ = warning: this is accepted in the current edition (Rust 2015) but is a hard error in Rust 2018!
94
94
= note: for more information, see issue #49716 <https://github.com/rust-lang/rust/issues/49716>
95
95
96
96
error: aborting due to 10 previous errors
0 commit comments