Rollup merge of #68312 - varkor:issue-67753-regression, r=Centril

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

Closes https://github.com/rust-lang/rust/issues/67753.
This commit is contained in:
Tyler Mandry 2020-01-17 17:28:20 -08:00 committed by GitHub
commit 9d9c8c69e3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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() {}

View File

@ -0,0 +1,8 @@
warning: the feature `const_generics` is incomplete and may cause the compiler to crash
--> $DIR/integer-literal-generic-arg-in-where-clause.rs:3:12
|
LL | #![feature(const_generics)]
| ^^^^^^^^^^^^^^
|
= note: `#[warn(incomplete_features)]` on by default