blob: e53c8463ef4bfdb7582005c817193c3488e663e1 [file] [log] [blame]
fn main() {
match "wow" {
"bar" ..= "foo" => { }
};
//~^^ ERROR only `char` and numeric types are allowed in range
match "wow" {
10 ..= "what" => ()
};
//~^^ ERROR only `char` and numeric types are allowed in range
match "wow" {
true ..= "what" => {}
};
//~^^ ERROR only `char` and numeric types are allowed in range
match 5 {
'c' ..= 100 => { }
_ => { }
};
//~^^^ ERROR mismatched types
}