summaryrefslogtreecommitdiffstats
path: root/src/test/ui/pattern/issue-88074-pat-range-type-inference-err.rs
blob: 16df272df6bd9a909bda177582ad3b73835bbefb (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
trait Zero {
    const ZERO: Self;
}

impl Zero for String {
    const ZERO: Self = String::new();
}

fn foo() {
     match String::new() {
        Zero::ZERO ..= Zero::ZERO => {},
        //~^ ERROR only `char` and numeric types are allowed in range patterns
        _ => {},
    }
}

fn bar() {
    match Zero::ZERO {
        Zero::ZERO ..= Zero::ZERO => {},
        //~^ ERROR type annotations needed [E0282]
        _ => {},
    }
}

fn main() {
    foo();
    bar();
}