Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Changes
Page history
Update rust error
authored
Dec 15, 2022
by
umaumax
Hide whitespace changes
Inline
Side-by-side
rust/rust-error.md
View page @
0c29c95f
...
...
@@ -11,7 +11,7 @@ fn f() -> Result<()> {
fn
main
()
->
Result
<
()
>
{
f
()
?
;
Ok
(())
Ok
(())
}
```
...
...
@@ -25,7 +25,7 @@ fn f() -> Result<()> {
fn
main
()
->
Result
<
()
>
{
f
()
.unwrap
();
Ok
(())
Ok
(())
}
```
...
...
...
...