fix(options3): panic when not matching to avoid false positives
Closes #1503
This commit is contained in:
parent
9ffcab07bf
commit
3ecb47ff2c
@ -13,7 +13,7 @@ fn main() {
|
|||||||
|
|
||||||
match y {
|
match y {
|
||||||
Some(p) => println!("Co-ordinates are {},{} ", p.x, p.y),
|
Some(p) => println!("Co-ordinates are {},{} ", p.x, p.y),
|
||||||
_ => println!("no match"),
|
_ => panic!("no match!"),
|
||||||
}
|
}
|
||||||
y; // Fix without deleting this line.
|
y; // Fix without deleting this line.
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user