@@ -2,7 +2,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
2
2
--> $DIR/edition-deny-async-fns-2015.rs:3:1
3
3
|
4
4
LL | async fn foo() {}
5
- | ^^^^^ to use `async fn`, switch to Rust 2018
5
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
6
6
|
7
7
= help: set `edition = "2018"` in `Cargo.toml`
8
8
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
@@ -11,7 +11,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
11
11
--> $DIR/edition-deny-async-fns-2015.rs:5:12
12
12
|
13
13
LL | fn baz() { async fn foo() {} }
14
- | ^^^^^ to use `async fn`, switch to Rust 2018
14
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
15
15
|
16
16
= help: set `edition = "2018"` in `Cargo.toml`
17
17
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
@@ -20,7 +20,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
20
20
--> $DIR/edition-deny-async-fns-2015.rs:7:1
21
21
|
22
22
LL | async fn async_baz() {
23
- | ^^^^^ to use `async fn`, switch to Rust 2018
23
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
24
24
|
25
25
= help: set `edition = "2018"` in `Cargo.toml`
26
26
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
@@ -29,7 +29,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
29
29
--> $DIR/edition-deny-async-fns-2015.rs:8:5
30
30
|
31
31
LL | async fn bar() {}
32
- | ^^^^^ to use `async fn`, switch to Rust 2018
32
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
33
33
|
34
34
= help: set `edition = "2018"` in `Cargo.toml`
35
35
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
@@ -38,7 +38,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
38
38
--> $DIR/edition-deny-async-fns-2015.rs:14:5
39
39
|
40
40
LL | async fn foo() {}
41
- | ^^^^^ to use `async fn`, switch to Rust 2018
41
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
42
42
|
43
43
= help: set `edition = "2018"` in `Cargo.toml`
44
44
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
@@ -47,7 +47,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
47
47
--> $DIR/edition-deny-async-fns-2015.rs:18:5
48
48
|
49
49
LL | async fn foo() {}
50
- | ^^^^^ to use `async fn`, switch to Rust 2018
50
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
51
51
|
52
52
= help: set `edition = "2018"` in `Cargo.toml`
53
53
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
@@ -56,7 +56,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
56
56
--> $DIR/edition-deny-async-fns-2015.rs:36:9
57
57
|
58
58
LL | async fn bar() {}
59
- | ^^^^^ to use `async fn`, switch to Rust 2018
59
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
60
60
|
61
61
= help: set `edition = "2018"` in `Cargo.toml`
62
62
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
@@ -65,7 +65,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
65
65
--> $DIR/edition-deny-async-fns-2015.rs:26:9
66
66
|
67
67
LL | async fn foo() {}
68
- | ^^^^^ to use `async fn`, switch to Rust 2018
68
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
69
69
|
70
70
= help: set `edition = "2018"` in `Cargo.toml`
71
71
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
@@ -74,7 +74,7 @@ error[E0670]: `async fn` is not permitted in the 2015 edition
74
74
--> $DIR/edition-deny-async-fns-2015.rs:31:13
75
75
|
76
76
LL | async fn bar() {}
77
- | ^^^^^ to use `async fn`, switch to Rust 2018
77
+ | ^^^^^ to use `async fn`, switch to Rust 2018 or later
78
78
|
79
79
= help: set `edition = "2018"` in `Cargo.toml`
80
80
= note: for more on editions, read https://doc.rust-lang.org/edition-guide
0 commit comments