blob: c87ef4cb8541fca030d64805d772963470c0eb67 [file] [log] [blame]
fn main() {
match Some("hi".to_string()) {
Some(s) if s.len() == 0 => {},
//~^ ERROR E0008
_ => {},
}
}