summaryrefslogtreecommitdiffstats
path: root/src/test/ui/closures/2229_closure_analysis/match/auxiliary/match_non_exhaustive_lib.rs
blob: 4060c409355a18978c7600ea4612659c6285fbc9 (plain)
1
2
3
4
5
6
7
8
9
10
#[non_exhaustive]
pub enum E1 {}

#[non_exhaustive]
pub enum E2 { A, B }

#[non_exhaustive]
pub enum E3 { C }

pub enum E4 { D }