1 2 3 4 5 6 7 8 9 10
use mark_test::kind::Kind; fn main() { let a = Kind::Stranger; match a { Kind::Stranger => { () }, _ => () } }