summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0008.rs
blob: c87ef4cb8541fca030d64805d772963470c0eb67 (plain)
1
2
3
4
5
6
7
fn main() {
    match Some("hi".to_string()) {
        Some(s) if s.len() == 0 => {},
        //~^ ERROR E0008
        _ => {},
    }
}