]> git.proxmox.com Git - rustc.git/blame - src/test/ui/half-open-range-patterns/feature-gate-half-open-range-patterns.stderr
New upstream version 1.55.0+dfsg1
[rustc.git] / src / test / ui / half-open-range-patterns / feature-gate-half-open-range-patterns.stderr
CommitLineData
dfeec247
XL
1error: range-to patterns with `...` are not allowed
2 --> $DIR/feature-gate-half-open-range-patterns.rs:9:12
3 |
4LL | if let ...5 = 0 {}
5 | ^^^ help: use `..=` instead
6
7error[E0586]: inclusive range with no end
136023e0 8 --> $DIR/feature-gate-half-open-range-patterns.rs:14:13
dfeec247
XL
9 |
10LL | if let 5..= = 0 {}
11 | ^^^ help: use `..` instead
12 |
13 = note: inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
14
15error[E0586]: inclusive range with no end
136023e0 16 --> $DIR/feature-gate-half-open-range-patterns.rs:16:13
dfeec247
XL
17 |
18LL | if let 5... = 0 {}
19 | ^^^ help: use `..` instead
20 |
21 = note: inclusive ranges must be bounded at the end (`..=b` or `a..=b`)
22
23error[E0658]: half-open range patterns are unstable
24 --> $DIR/feature-gate-half-open-range-patterns.rs:7:12
25 |
26LL | if let ..=5 = 0 {}
27 | ^^^^
28 |
74b04a01 29 = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
dfeec247
XL
30 = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
31
32error[E0658]: half-open range patterns are unstable
33 --> $DIR/feature-gate-half-open-range-patterns.rs:9:12
34 |
35LL | if let ...5 = 0 {}
36 | ^^^^
37 |
74b04a01 38 = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
dfeec247
XL
39 = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
40
41error[E0658]: half-open range patterns are unstable
42 --> $DIR/feature-gate-half-open-range-patterns.rs:12:12
43 |
44LL | if let ..5 = 0 {}
45 | ^^^
46 |
74b04a01 47 = note: see issue #67264 <https://github.com/rust-lang/rust/issues/67264> for more information
dfeec247
XL
48 = help: add `#![feature(half_open_range_patterns)]` to the crate attributes to enable
49
136023e0 50error: aborting due to 6 previous errors
dfeec247
XL
51
52Some errors have detailed explanations: E0586, E0658.
53For more information about an error, try `rustc --explain E0586`.