mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-08 03:53:17 +00:00
8 lines
205 B
Rust
8 lines
205 B
Rust
#[test]
|
|
fn test_bool_to_option() {
|
|
assert_eq!(false.then_some(0), None);
|
|
assert_eq!(true.then_some(0), Some(0));
|
|
assert_eq!(false.then(|| 0), None);
|
|
assert_eq!(true.then(|| 0), Some(0));
|
|
}
|