rustc/tests/ui/async-await/try-in-sync.rs
2025-01-11 15:57:26 +01:00

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(())
}