index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
ui
/
error-codes
/
E0308-4.rs
blob: aaf7ef5bd792987b46539bb1d852904e04858582 (
plain
)
1
2
3
4
5
6
7
fn main() { let x = 1u8; match x { 0u8..=3i8 => (), //~ ERROR E0308 _ => () } }