Add tests for error message for pattern matching typo
This commit is contained in:
parent
4436bca5af
commit
8260209bb2
2 changed files with 27 additions and 0 deletions
17
src/test/ui/did_you_mean/multiple-pattern-typo.rs
Normal file
17
src/test/ui/did_you_mean/multiple-pattern-typo.rs
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
// Copyright 2018 The Rust Project Developers. See the COPYRIGHT
|
||||||
|
// file at the top-level directory of this distribution and at
|
||||||
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||||
|
// option. This file may not be copied, modified, or distributed
|
||||||
|
// except according to those terms.
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let x = 3;
|
||||||
|
match x {
|
||||||
|
1 | 2 || 3 => (), //~ ERROR unexpected token `||` after pattern
|
||||||
|
_ => (),
|
||||||
|
}
|
||||||
|
}
|
10
src/test/ui/did_you_mean/multiple-pattern-typo.stderr
Normal file
10
src/test/ui/did_you_mean/multiple-pattern-typo.stderr
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
error: unexpected token `||` after pattern
|
||||||
|
--> $DIR/multiple-pattern-typo.rs:14:15
|
||||||
|
|
|
||||||
|
14 | 1 | 2 || 3 => (), //~ ERROR unexpected token `||` after pattern
|
||||||
|
| ^^
|
||||||
|
|
|
||||||
|
= help: did you mean to use `|` to specify multiple patterns?
|
||||||
|
|
||||||
|
error: aborting due to previous error
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue