index
:
rustc
debian
progress-linux
upstream
debian 12 backports: mozilla
Progress Linux
summary
refs
log
tree
commit
diff
stats
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
=
1
u8
;
match
x
{
0
u8
..=
3
i8
=>
(),
//~ ERROR E0308
_
=>
()
}
}