blob: 2f80435046bdf5d2434000338251e27ed47d52ca [file] [log] [blame]
// Regression test for #65159. We used to ICE.
//
// edition:2018
async fn copy() -> Result<()> //~ ERROR wrong number of type arguments
{
Ok(())
//~^ type annotations needed
}
fn main() { }