1
+ error: range-to patterns with `...` are not allowed
2
+ --> $DIR/feature-gate-half-open-range-patterns.rs:9:12
3
+ |
4
+ LL | if let ...5 = 0 {}
5
+ | ^^^ help: use `..=` instead
6
+
1
7
error[E0586]: inclusive range with no end
2
- --> $DIR/feature-gate-half-open-range-patterns.rs:15 :13
8
+ --> $DIR/feature-gate-half-open-range-patterns.rs:16 :13
3
9
|
4
10
LL | if let 5..= = 0 {}
5
- | ^^^
11
+ | ^^^ help: use `..` instead
6
12
|
7
- = help : inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
13
+ = note : inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
8
14
9
15
error[E0586]: inclusive range with no end
10
- --> $DIR/feature-gate-half-open-range-patterns.rs:18 :13
16
+ --> $DIR/feature-gate-half-open-range-patterns.rs:19 :13
11
17
|
12
18
LL | if let 5... = 0 {}
13
- | ^^^
19
+ | ^^^ help: use `..` instead
14
20
|
15
- = help : inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
21
+ = note : inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
16
22
17
23
error[E0658]: half-open range patterns are unstable
18
24
--> $DIR/feature-gate-half-open-range-patterns.rs:7:12
@@ -33,7 +39,7 @@ LL | if let ...5 = 0 {}
33
39
= help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
34
40
35
41
error[E0658]: half-open range patterns are unstable
36
- --> $DIR/feature-gate-half-open-range-patterns.rs:11 :12
42
+ --> $DIR/feature-gate-half-open-range-patterns.rs:12 :12
37
43
|
38
44
LL | if let ..5 = 0 {}
39
45
| ^^^
@@ -42,7 +48,7 @@ LL | if let ..5 = 0 {}
42
48
= help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
43
49
44
50
error[E0658]: half-open range patterns are unstable
45
- --> $DIR/feature-gate-half-open-range-patterns.rs:13 :12
51
+ --> $DIR/feature-gate-half-open-range-patterns.rs:14 :12
46
52
|
47
53
LL | if let 5.. = 0 {}
48
54
| ^^^
@@ -51,7 +57,7 @@ LL | if let 5.. = 0 {}
51
57
= help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
52
58
53
59
error[E0658]: half-open range patterns are unstable
54
- --> $DIR/feature-gate-half-open-range-patterns.rs:15 :12
60
+ --> $DIR/feature-gate-half-open-range-patterns.rs:16 :12
55
61
|
56
62
LL | if let 5..= = 0 {}
57
63
| ^^^^
@@ -60,15 +66,15 @@ LL | if let 5..= = 0 {}
60
66
= help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
61
67
62
68
error[E0658]: half-open range patterns are unstable
63
- --> $DIR/feature-gate-half-open-range-patterns.rs:18 :12
69
+ --> $DIR/feature-gate-half-open-range-patterns.rs:19 :12
64
70
|
65
71
LL | if let 5... = 0 {}
66
72
| ^^^^
67
73
|
68
74
= note: for more information, see https://github.com/rust-lang/rust/issues/67264
69
75
= help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
70
76
71
- error: aborting due to 8 previous errors
77
+ error: aborting due to 9 previous errors
72
78
73
79
Some errors have detailed explanations: E0586, E0658.
74
80
For more information about an error, try `rustc --explain E0586`.
0 commit comments