about summary refs log tree commit diff
path: root/tests/ui/macros/auxiliary/foreign-crate-macro-pat.rs
blob: 1596f890bbba17b24ee78c38aa8ddcfdda7a2f80 (plain)
1
2
3
4
5
6
7
8
9
10
11
//@ edition:2018

#[macro_export]
macro_rules! custom_matches {
    ($expression:expr, $( $pattern:pat )|+ $( if $guard: expr )? $(,)?) => {
        match $expression {
            $( $pattern )|+ $( if $guard )? => true,
            _ => false
        }
    }
}