Files
rust/src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.rs

19 lines
375 B
Rust
Raw Normal View History

// check-pass
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
fn takes_closure_of_array_3<F>(f: F) where F: Fn([i32; 3]) {
f([1, 2, 3]);
}
fn takes_closure_of_array_3_apit(f: impl Fn([i32; 3])) {
f([1, 2, 3]);
}
fn returns_closure_of_array_3() -> impl Fn([i32; 3]) {
|_| {}
}
fn main() {}