about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthias Krüger <matthias.krueger@famsik.de>2022-06-26 19:47:06 +0200
committerGitHub <noreply@github.com>2022-06-26 19:47:06 +0200
commit50b6e7db6a967552004871c097cd372d9dca5f57 (patch)
tree914881a4e21e6c1403a7232d19800fbcb0281bb5
parent0c09846e89bedd28990e78dd4ddbe2f0af48326e (diff)
parent0398aa8ccb6db06e5fc277a31be139fc2c6b19f9 (diff)
downloadrust-50b6e7db6a967552004871c097cd372d9dca5f57.tar.gz
rust-50b6e7db6a967552004871c097cd372d9dca5f57.zip
Rollup merge of #98535 - GuillaumeGomez:regression-test-92859, r=lcnr
Add regression test for generic const in rustdoc

Fixes #92859.

r? ```@lcnr```
-rw-r--r--src/test/rustdoc/generic_const_exprs.rs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/rustdoc/generic_const_exprs.rs b/src/test/rustdoc/generic_const_exprs.rs
new file mode 100644
index 00000000000..6ff59163975
--- /dev/null
+++ b/src/test/rustdoc/generic_const_exprs.rs
@@ -0,0 +1,24 @@
+// Regression test for <https://github.com/rust-lang/rust/issues/92859>.
+
+#![allow(incomplete_features)]
+#![feature(generic_const_exprs)]
+
+#![crate_name = "foo"]
+
+// @has 'foo/trait.Foo.html'
+
+pub trait Foo: Sized {
+    const WIDTH: usize;
+
+    fn arrayify(self) -> [Self; Self::WIDTH];
+}
+
+impl<T: Sized> Foo for T {
+    const WIDTH: usize = 1;
+
+    // @has - '//*[@id="tymethod.arrayify"]/*[@class="code-header"]' \
+    // 'fn arrayify(self) -> [Self; Self::WIDTH]'
+    fn arrayify(self) -> [Self; Self::WIDTH] {
+        [self]
+    }
+}