summaryrefslogtreecommitdiffstats
path: root/crates/rebel-parse/src/ast/pat.rs
blob: a37695693ab46217443dd7ca66fdd06987401d30 (plain)
1
2
3
4
5
6
use super::*;

#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Pat<'a> {
	Path(Path<'a>),
}