]> git.proxmox.com Git - rustc.git/blame - src/test/ui/error-codes/E0001.rs
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / error-codes / E0001.rs
CommitLineData
32a655c1
SL
1#![deny(unreachable_patterns)]
2
a7813a04
XL
3fn main() {
4 let foo = Some(1);
5 match foo {
32a655c1 6 Some(_) => {/* ... */}
a7813a04 7 None => {/* ... */}
32a655c1 8 _ => {/* ... */} //~ ERROR unreachable pattern
54a0048b
SL
9 }
10}