rust/tests/ui/or-patterns/or-patterns-syntactic-fail-2018.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
318 B
Rust
Raw Normal View History

// Test that :pat doesn't accept top-level or-patterns in edition 2018.
// edition:2018
fn main() {}
// Test the `pat` macro fragment parser:
macro_rules! accept_pat {
($p:pat) => {};
}
accept_pat!(p | q); //~ ERROR no rules expected the token `|`
accept_pat!(|p| q); //~ ERROR no rules expected the token `|`