diff --git a/src/test/ui/did_you_mean/multiple-pattern-typo.rs b/src/test/ui/did_you_mean/multiple-pattern-typo.rs new file mode 100644 index 00000000000..a8994fd6c96 --- /dev/null +++ b/src/test/ui/did_you_mean/multiple-pattern-typo.rs @@ -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 or the MIT license +// , 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 + _ => (), + } +} diff --git a/src/test/ui/did_you_mean/multiple-pattern-typo.stderr b/src/test/ui/did_you_mean/multiple-pattern-typo.stderr new file mode 100644 index 00000000000..940ff6828b1 --- /dev/null +++ b/src/test/ui/did_you_mean/multiple-pattern-typo.stderr @@ -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 +