blob: 4a72f224d9436e1808b8676adfef656580133ecf [file] [log] [blame]
//@ edition: 2021
//@ check-pass
// Make sure we don't cycle error when normalizing types for tail expr drop order lint.
#![deny(tail_expr_drop_order)]
async fn test() -> Result<(), Box<dyn std::error::Error>> {
Box::pin(test()).await?;
Ok(())
}
fn main() {}