summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfc-0107-bind-by-move-pattern-guards/former-E0008-now-pass.rs
blob: 3161d6fbbe647c55fd74534713f369bf58b99625 (plain)
1
2
3
4
5
6
7
8
9
10
11
// This test used to emit E0008 but now passed since `bind_by_move_pattern_guards`
// have been stabilized.

// check-pass

fn main() {
    match Some("hi".to_string()) {
        Some(s) if s.len() == 0 => {},
        _ => {},
    }
}