mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
14 lines
225 B
Rust
14 lines
225 B
Rust
//@ known-bug: #131538
|
|
#![feature(generic_associated_types_extended)]
|
|
#![feature(trivial_bounds)]
|
|
|
|
trait HealthCheck {
|
|
async fn check<const N: usize>();
|
|
}
|
|
|
|
fn do_health_check_par()
|
|
where
|
|
HealthCheck: HealthCheck,
|
|
{
|
|
}
|