mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00
10 lines
178 B
Rust
10 lines
178 B
Rust
// ex-ice: #140429
|
|
//@ compile-flags: -Zlint-mir --crate-type lib
|
|
//@ edition:2024
|
|
//@ check-pass
|
|
|
|
#![feature(async_drop)]
|
|
#![allow(incomplete_features)]
|
|
|
|
async fn a<T>(x: T) {}
|