mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
21 lines
355 B
Rust
21 lines
355 B
Rust
//@ edition:2018
|
|
//@ incremental
|
|
|
|
pub struct SadGirl;
|
|
|
|
impl SadGirl {
|
|
pub async fn call(&self) -> Result<(), ()> {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
async fn async_main() -> Result<(), ()> {
|
|
// should be `.call().await?`
|
|
SadGirl {}.call()?; //~ ERROR: the `?` operator can only be applied to values
|
|
Ok(())
|
|
}
|
|
|
|
fn main() {
|
|
let _ = async_main();
|
|
}
|