about summary refs log tree commit diff
path: root/tests/rustdoc/legacy-const-generic.rs
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:01:08 +0200
committerGuillaume Gomez <guillaume1.gomez@gmail.com>2025-05-05 17:47:18 +0200
commitb84f4cc39e99f801dcd37125dffa67eb796c85b8 (patch)
tree071def2349dabae166fd66b06ee9346aa825abb9 /tests/rustdoc/legacy-const-generic.rs
parentbe71d8b24f1aebe9c45279d95a76db8fa6a62574 (diff)
downloadrust-b84f4cc39e99f801dcd37125dffa67eb796c85b8.tar.gz
rust-b84f4cc39e99f801dcd37125dffa67eb796c85b8.zip
Created `tests/rustdoc/impl` subfolder to limit number of files at the top level
Diffstat (limited to 'tests/rustdoc/legacy-const-generic.rs')
-rw-r--r--tests/rustdoc/legacy-const-generic.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/rustdoc/legacy-const-generic.rs b/tests/rustdoc/legacy-const-generic.rs
deleted file mode 100644
index 41df535f3e0..00000000000
--- a/tests/rustdoc/legacy-const-generic.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-#![crate_name = "foo"]
-#![feature(rustc_attrs)]
-
-//@ has 'foo/fn.foo.html'
-//@ has - '//pre[@class="rust item-decl"]' '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 - '//pre[@class="rust item-decl"]' '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]
-}