about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@gmail.com>2020-01-17 17:28:20 -0800
committerGitHub <noreply@github.com>2020-01-17 17:28:20 -0800
commit9d9c8c69e3a1206480a0382f22da24b6bb85e191 (patch)
tree263ed6a3783e9c988a1329c8cba529d016430d78
parent87293cd3d8493076e0194b6e8edc9e947c0ab624 (diff)
parenta91f77ca26f65e566b93a0f086a894e60ec7c257 (diff)
downloadrust-9d9c8c69e3a1206480a0382f22da24b6bb85e191.tar.gz
rust-9d9c8c69e3a1206480a0382f22da24b6bb85e191.zip
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.
-rw-r--r--src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.rs18
-rw-r--r--src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.stderr8
2 files changed, 26 insertions, 0 deletions
diff --git a/src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.rs b/src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.rs
new file mode 100644
index 00000000000..30fbfda112c
--- /dev/null
+++ b/src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.rs
@@ -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() {}
diff --git a/src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.stderr b/src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.stderr
new file mode 100644
index 00000000000..7f37f3e2791
--- /dev/null
+++ b/src/test/ui/const-generics/integer-literal-generic-arg-in-where-clause.stderr
@@ -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
+