rust/src/test/compile-fail/alt-range-fail-dominate.rs

37 lines
565 B
Rust
Raw Normal View History

//error-pattern: unreachable
//error-pattern: unreachable
//error-pattern: unreachable
//error-pattern: unreachable
//error-pattern: unreachable
fn main() {
2012-08-23 16:44:58 -05:00
match 5u {
2012-08-03 21:59:04 -05:00
1u to 10u => { }
5u to 6u => { }
2012-08-23 16:44:58 -05:00
_ => {}
};
2012-08-23 16:44:58 -05:00
match 5u {
2012-08-03 21:59:04 -05:00
3u to 6u => { }
4u to 6u => { }
2012-08-23 16:44:58 -05:00
_ => {}
};
2012-08-23 16:44:58 -05:00
match 5u {
2012-08-03 21:59:04 -05:00
4u to 6u => { }
4u to 6u => { }
2012-08-23 16:44:58 -05:00
_ => {}
};
2012-08-23 16:44:58 -05:00
match 'c' {
2012-08-03 21:59:04 -05:00
'A' to 'z' => {}
'a' to 'z' => {}
2012-08-23 16:44:58 -05:00
_ => {}
};
2012-08-23 16:44:58 -05:00
match 1.0 {
2012-08-03 21:59:04 -05:00
0.01 to 6.5 => {}
0.02 => {}
2012-08-23 16:44:58 -05:00
_ => {}
};
}