summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0029.rs
blob: fe0d851832b3d32ddb32bdaf8a5883b6b4c6d979 (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    let s = "hoho";

    match s {
        "hello" ..= "world" => {}
        //~^ ERROR only char and numeric types are allowed in range patterns
        _ => {}
    }
}