]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/pat-lt-bracket-6.stderr
Auto merge of #66645 - RalfJung:dereferenceable, r=pnkfelix
[rust.git] / src / test / ui / parser / pat-lt-bracket-6.stderr
1 error: expected one of `)`, `,`, `@`, or `|`, found `[`
2   --> $DIR/pat-lt-bracket-6.rs:5:19
3    |
4 LL |     let Test(&desc[..]) = x;
5    |                   ^
6    |                   |
7    |                   expected one of `)`, `,`, `@`, or `|`
8    |                   help: missing `,`
9
10 error[E0658]: subslice patterns are unstable
11   --> $DIR/pat-lt-bracket-6.rs:5:20
12    |
13 LL |     let Test(&desc[..]) = x;
14    |                    ^^
15    |
16    = note: for more information, see https://github.com/rust-lang/rust/issues/62254
17    = help: add `#![feature(slice_patterns)]` to the crate attributes to enable
18
19 error[E0308]: mismatched types
20   --> $DIR/pat-lt-bracket-6.rs:10:30
21    |
22 LL | const RECOVERY_WITNESS: () = 0;
23    |                              ^ expected `()`, found integer
24
25 error: aborting due to 3 previous errors
26
27 Some errors have detailed explanations: E0308, E0658.
28 For more information about an error, try `rustc --explain E0308`.