mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00
10 lines
203 B
Rust
10 lines
203 B
Rust
![]() |
//@ edition: 2021
|
||
|
|
||
|
async fn foo() -> Result<(), ()> { todo!() }
|
||
|
|
||
|
fn main() -> Result<(), ()> {
|
||
|
foo()?;
|
||
|
//~^ ERROR the `?` operator can only be applied to values that implement `Try`
|
||
|
Ok(())
|
||
|
}
|