mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-05 23:49:50 +00:00
Example code:
```
fn opts() -> Option<String> {
let s: Option<String> = Some(String::new());
Some(s?) // this can just be "s"
}
```
For high-level intro to how type checking works in rustc, see the type checking chapter of the rustc dev guide.