rust/tests/ui/const-generics/issues/issue-71611.rs
2023-06-01 18:21:42 +00:00

12 lines
369 B
Rust

// revisions: full min
#![cfg_attr(full, feature(adt_const_params))]
#![cfg_attr(full, allow(incomplete_features))]
fn func<A, const F: fn(inner: A)>(outer: A) {
//[min]~^ ERROR: using function pointers as const generic parameters is forbidden
//~^^ ERROR: the type of const parameters must not depend on other generic parameters
F(outer);
}
fn main() {}