Add regression test for integer literals in generic arguments in where clauses

This commit is contained in:
varkor
2020-01-17 14:21:14 +00:00
parent 91ff7c689d
commit a91f77ca26
2 changed files with 26 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
// 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() {}