mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 05:52:23 -05:00
Merge pull request #1512 from nmay231/main
fix(options3): panic when not matching to avoid false positives
This commit is contained in:
commit
b882da1ad4
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ fn main() {
|
|||
|
||||
match y {
|
||||
Some(p) => println!("Co-ordinates are {},{} ", p.x, p.y),
|
||||
_ => println!("no match"),
|
||||
_ => panic!("no match!"),
|
||||
}
|
||||
y; // Fix without deleting this line.
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue