chore: make options2 not compile deliberately

This commit is contained in:
magnusrodseth 2022-08-17 12:54:23 +02:00 committed by Magnus Rødseth
parent 52a29aa84b
commit 99ea2cbba7
1 changed files with 2 additions and 2 deletions

View File

@ -13,7 +13,7 @@ mod tests {
let optional_target = Some(target);
// TODO: Make this an if let statement whose value is "Some" type
if let Some(word) = optional_target {
word = optional_target {
assert_eq!(word, target);
}
}
@ -28,7 +28,7 @@ mod tests {
// TODO: make this a while let statement - remember that vector.pop also adds another layer of Option<T>
// You can stack `Option<T>`'s into while let and if let
while let Some(Some(integer)) = optional_integers.pop() {
integer = optional_integers.pop() {
assert_eq!(integer, range);
range -= 1;
}