]> git.proxmox.com Git - rustc.git/blob - src/test/ui/or-patterns/feature-gate-or_patterns.stderr
New upstream version 1.42.0+dfsg1
[rustc.git] / src / test / ui / or-patterns / feature-gate-or_patterns.stderr
1 error[E0658]: or-patterns syntax is experimental
2 --> $DIR/feature-gate-or_patterns.rs:5:14
3 |
4 LL | Some(0 | 1 | 2) => {}
5 | ^^^^^^^^^
6 |
7 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
8 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
9
10 error[E0658]: or-patterns syntax is experimental
11 --> $DIR/feature-gate-or_patterns.rs:28:11
12 |
13 LL | let | A | B;
14 | ^^^^^
15 |
16 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
17 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
18
19 error[E0658]: or-patterns syntax is experimental
20 --> $DIR/feature-gate-or_patterns.rs:29:9
21 |
22 LL | let A | B;
23 | ^^^^^
24 |
25 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
26 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
27
28 error[E0658]: or-patterns syntax is experimental
29 --> $DIR/feature-gate-or_patterns.rs:30:11
30 |
31 LL | for | A | B in 0 {}
32 | ^^^^^
33 |
34 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
35 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
36
37 error[E0658]: or-patterns syntax is experimental
38 --> $DIR/feature-gate-or_patterns.rs:31:9
39 |
40 LL | for A | B in 0 {}
41 | ^^^^^
42 |
43 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
44 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
45
46 error[E0658]: or-patterns syntax is experimental
47 --> $DIR/feature-gate-or_patterns.rs:32:13
48 |
49 LL | fn fun((A | B): _) {}
50 | ^^^^^
51 |
52 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
53 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
54
55 error[E0658]: or-patterns syntax is experimental
56 --> $DIR/feature-gate-or_patterns.rs:33:15
57 |
58 LL | let _ = |(A | B): u8| ();
59 | ^^^^^
60 |
61 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
62 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
63
64 error[E0658]: or-patterns syntax is experimental
65 --> $DIR/feature-gate-or_patterns.rs:34:10
66 |
67 LL | let (A | B);
68 | ^^^^^
69 |
70 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
71 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
72
73 error[E0658]: or-patterns syntax is experimental
74 --> $DIR/feature-gate-or_patterns.rs:35:10
75 |
76 LL | let (A | B,);
77 | ^^^^^
78 |
79 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
80 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
81
82 error[E0658]: or-patterns syntax is experimental
83 --> $DIR/feature-gate-or_patterns.rs:36:11
84 |
85 LL | let A(B | C);
86 | ^^^^^
87 |
88 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
89 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
90
91 error[E0658]: or-patterns syntax is experimental
92 --> $DIR/feature-gate-or_patterns.rs:37:14
93 |
94 LL | let E::V(B | C);
95 | ^^^^^
96 |
97 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
98 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
99
100 error[E0658]: or-patterns syntax is experimental
101 --> $DIR/feature-gate-or_patterns.rs:38:17
102 |
103 LL | let S { f1: B | C, f2 };
104 | ^^^^^
105 |
106 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
107 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
108
109 error[E0658]: or-patterns syntax is experimental
110 --> $DIR/feature-gate-or_patterns.rs:39:20
111 |
112 LL | let E::V { f1: B | C, f2 };
113 | ^^^^^
114 |
115 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
116 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
117
118 error[E0658]: or-patterns syntax is experimental
119 --> $DIR/feature-gate-or_patterns.rs:40:10
120 |
121 LL | let [A | B];
122 | ^^^^^
123 |
124 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
125 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
126
127 error[E0658]: or-patterns syntax is experimental
128 --> $DIR/feature-gate-or_patterns.rs:16:14
129 |
130 LL | accept_pat!((p | q));
131 | ^^^^^
132 |
133 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
134 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
135
136 error[E0658]: or-patterns syntax is experimental
137 --> $DIR/feature-gate-or_patterns.rs:17:14
138 |
139 LL | accept_pat!((p | q,));
140 | ^^^^^
141 |
142 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
143 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
144
145 error[E0658]: or-patterns syntax is experimental
146 --> $DIR/feature-gate-or_patterns.rs:18:16
147 |
148 LL | accept_pat!(TS(p | q));
149 | ^^^^^
150 |
151 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
152 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
153
154 error[E0658]: or-patterns syntax is experimental
155 --> $DIR/feature-gate-or_patterns.rs:19:21
156 |
157 LL | accept_pat!(NS { f: p | q });
158 | ^^^^^
159 |
160 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
161 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
162
163 error[E0658]: or-patterns syntax is experimental
164 --> $DIR/feature-gate-or_patterns.rs:20:14
165 |
166 LL | accept_pat!([p | q]);
167 | ^^^^^
168 |
169 = note: for more information, see https://github.com/rust-lang/rust/issues/54883
170 = help: add `#![feature(or_patterns)]` to the crate attributes to enable
171
172 error: aborting due to 19 previous errors
173
174 For more information about this error, try `rustc --explain E0658`.