summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/match-vec-alternatives.rs
blob: af95eb95df04cab1cc6f854423e9963442372448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
// run-pass

fn match_vecs<'a, T>(l1: &'a [T], l2: &'a [T]) -> &'static str {
    match (l1, l2) {
        (&[], &[]) => "both empty",
        (&[], &[..]) | (&[..], &[]) => "one empty",
        (&[..], &[..]) => "both non-empty"
    }
}

fn match_vecs_cons<'a, T>(l1: &'a [T], l2: &'a [T]) -> &'static str {
    match (l1, l2) {
        (&[], &[]) => "both empty",
        (&[], &[_, ..]) | (&[_, ..], &[]) => "one empty",
        (&[_, ..], &[_, ..]) => "both non-empty"
    }
}

fn match_vecs_snoc<'a, T>(l1: &'a [T], l2: &'a [T]) -> &'static str {
    match (l1, l2) {
        (&[], &[]) => "both empty",
        (&[], &[.., _]) | (&[.., _], &[]) => "one empty",
        (&[.., _], &[.., _]) => "both non-empty"
    }
}

fn match_nested_vecs_cons<'a, T>(l1: Option<&'a [T]>, l2: Result<&'a [T], ()>) -> &'static str {
    match (l1, l2) {
        (Some(&[]), Ok(&[])) => "Some(empty), Ok(empty)",
        (Some(&[_, ..]), Ok(_)) | (Some(&[_, ..]), Err(())) => "Some(non-empty), any",
        (None, Ok(&[])) | (None, Err(())) | (None, Ok(&[_])) => "None, Ok(less than one element)",
        (None, Ok(&[_, _, ..])) => "None, Ok(at least two elements)",
        _ => "other"
    }
}

fn match_nested_vecs_snoc<'a, T>(l1: Option<&'a [T]>, l2: Result<&'a [T], ()>) -> &'static str {
    match (l1, l2) {
        (Some(&[]), Ok(&[])) => "Some(empty), Ok(empty)",
        (Some(&[.., _]), Ok(_)) | (Some(&[.., _]), Err(())) => "Some(non-empty), any",
        (None, Ok(&[])) | (None, Err(())) | (None, Ok(&[_])) => "None, Ok(less than one element)",
        (None, Ok(&[.., _, _])) => "None, Ok(at least two elements)",
        _ => "other"
    }
}

fn main() {
    assert_eq!(match_vecs(&[1, 2], &[2, 3]), "both non-empty");
    assert_eq!(match_vecs(&[], &[1, 2, 3, 4]), "one empty");
    assert_eq!(match_vecs::<usize>(&[], &[]), "both empty");
    assert_eq!(match_vecs(&[1, 2, 3], &[]), "one empty");

    assert_eq!(match_vecs_cons(&[1, 2], &[2, 3]), "both non-empty");
    assert_eq!(match_vecs_cons(&[], &[1, 2, 3, 4]), "one empty");
    assert_eq!(match_vecs_cons::<usize>(&[], &[]), "both empty");
    assert_eq!(match_vecs_cons(&[1, 2, 3], &[]), "one empty");

    assert_eq!(match_vecs_snoc(&[1, 2], &[2, 3]), "both non-empty");
    assert_eq!(match_vecs_snoc(&[], &[1, 2, 3, 4]), "one empty");
    assert_eq!(match_vecs_snoc::<usize>(&[], &[]), "both empty");
    assert_eq!(match_vecs_snoc(&[1, 2, 3], &[]), "one empty");

    assert_eq!(match_nested_vecs_cons(None, Ok::<&[_], ()>(&[4_usize, 2_usize])),
               "None, Ok(at least two elements)");
    assert_eq!(match_nested_vecs_cons::<usize>(None, Err(())), "None, Ok(less than one element)");
    assert_eq!(match_nested_vecs_cons::<bool>(Some::<&[_]>(&[]), Ok::<&[_], ()>(&[])),
               "Some(empty), Ok(empty)");
    assert_eq!(match_nested_vecs_cons(Some::<&[_]>(&[1]), Err(())), "Some(non-empty), any");
    assert_eq!(match_nested_vecs_cons(Some::<&[_]>(&[(42, ())]), Ok::<&[_], ()>(&[(1, ())])),
               "Some(non-empty), any");

    assert_eq!(match_nested_vecs_snoc(None, Ok::<&[_], ()>(&[4_usize, 2_usize])),
               "None, Ok(at least two elements)");
    assert_eq!(match_nested_vecs_snoc::<usize>(None, Err(())), "None, Ok(less than one element)");
    assert_eq!(match_nested_vecs_snoc::<bool>(Some::<&[_]>(&[]), Ok::<&[_], ()>(&[])),
               "Some(empty), Ok(empty)");
    assert_eq!(match_nested_vecs_snoc(Some::<&[_]>(&[1]), Err(())), "Some(non-empty), any");
    assert_eq!(match_nested_vecs_snoc(Some::<&[_]>(&[(42, ())]), Ok::<&[_], ()>(&[(1, ())])),
               "Some(non-empty), any");
}