rust/tests/ui/async-await/issues/issue-65159.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
211 B
Rust
Raw Normal View History

// Regression test for #65159. We used to ICE.
//
//@ edition:2018
async fn copy() -> Result<()>
//~^ ERROR enum takes 2 generic arguments
//~| ERROR enum takes 2 generic arguments
{
Ok(())
}
fn main() {}