4 lines
66 B
Rust
4 lines
66 B
Rust
|
fn main() {
|
||
|
assert_eq!(Some(42).map(Some), Some(Some(42)));
|
||
|
}
|