blob: 7197a4fb91a0b83657206e339501e70557ecc9f0 [file] [log] [blame]
// Regression test for #65159. We used to ICE.
//
// edition:2018
async fn copy() -> Result<()>
//~^ ERROR enum takes 2 generic arguments
{
Ok(())
}
fn main() {}