about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2021-10-16 17:52:24 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2021-12-02 11:27:01 +0100
commit5c75a4857ee447437ca71b981eadfb1a38ad7268 (patch)
treed1fc54ca067964e0152c7ac67d2cf98e8d635aaa
parentbd8d7e4a454ea8b381c3108fccdbf3f5563de6f5 (diff)
downloadrust-5c75a4857ee447437ca71b981eadfb1a38ad7268.tar.gz
rust-5c75a4857ee447437ca71b981eadfb1a38ad7268.zip
Add test for legacy-const-generic arguments
-rw-r--r--src/test/rustdoc/legacy-const-generic.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/rustdoc/legacy-const-generic.rs b/src/test/rustdoc/legacy-const-generic.rs
new file mode 100644
index 00000000000..46a50e2fc30
--- /dev/null
+++ b/src/test/rustdoc/legacy-const-generic.rs
@@ -0,0 +1,16 @@
+#![crate_name = "foo"]
+#![feature(rustc_attrs)]
+
+// @has 'foo/fn.foo.html'
+// @has - '//*[@class="rust fn"]' 'fn foo(x: usize, const Y: usize, z: usize) -> [usize; 3]'
+#[rustc_legacy_const_generics(1)]
+pub fn foo<const Y: usize>(x: usize, z: usize) -> [usize; 3] {
+    [x, Y, z]
+}
+
+// @has 'foo/fn.bar.html'
+// @has - '//*[@class="rust fn"]' 'fn bar(x: usize, const Y: usize, const Z: usize) -> [usize; 3]'
+#[rustc_legacy_const_generics(1, 2)]
+pub fn bar<const Y: usize, const Z: usize>(x: usize) -> [usize; 3] {
+    [x, Y, z]
+}